diff options
author | jkh <jkh@FreeBSD.org> | 1994-09-14 14:12:45 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1994-09-14 14:12:45 +0000 |
commit | 38b1ec0868a2ba2238b1b06824072bca02343295 (patch) | |
tree | d1875bc219661fe058aeb88a0e9b2361f9e99456 /benchmarks/tcpblast | |
parent | 79287cf7107adfd41ad09a9da1aa005c2e1aa1ff (diff) | |
download | FreeBSD-ports-38b1ec0868a2ba2238b1b06824072bca02343295.zip FreeBSD-ports-38b1ec0868a2ba2238b1b06824072bca02343295.tar.gz |
Several changes across all ports:
1. Make MASTER_SITES entries contain a trailing /. Garrett says that
assuming a '/' seperator between entries in MASTER_SITES and entries
in DISTFILES is a dangerous assumption. This will also be taken
out of bsd.port.mk.
2. General clean-up. Some of these Makefiles were a little grim.
Make sure they're all in sync with the sometimes rapidly changing
bsd.port.mk! :)
3. Some small configuration tweaks to keep them compiling under the
most recent 2.0 - some things seem to have broken along our road
to release.
Diffstat (limited to 'benchmarks/tcpblast')
-rw-r--r-- | benchmarks/tcpblast/src/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/benchmarks/tcpblast/src/Makefile b/benchmarks/tcpblast/src/Makefile index 42d678f..103db01 100644 --- a/benchmarks/tcpblast/src/Makefile +++ b/benchmarks/tcpblast/src/Makefile @@ -1,7 +1,6 @@ -PROG=tcpblast -SRCS=tcpblast.c -NOMAN=noman -DESTDIR?=/usr/local -BINDIR=/bin +PROG= tcpblast +SRCS= tcpblast.c +NOMAN= yes +BINDIR= /usr/local/bin -.include<bsd.prog.mk> +.include <bsd.prog.mk> |