diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-09-19 01:34:35 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-09-19 01:34:35 +0000 |
commit | ba14a613488ce01a5a15b9de03fed482a062b9bb (patch) | |
tree | a6480f5c9afec86083a0a2dc87a48ec64c4450c5 /benchmarks | |
parent | 5c6f51f8b9971eb31a66d5b1ea298f51f361d12d (diff) | |
download | ports-ba14a613488ce01a5a15b9de03fed482a062b9bb.tar.gz ports-ba14a613488ce01a5a15b9de03fed482a062b9bb.zip |
Notes
Diffstat (limited to 'benchmarks')
-rw-r--r-- | benchmarks/nttcp/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/benchmarks/nttcp/Makefile b/benchmarks/nttcp/Makefile index 70717b1d6a8d..910f19f728e9 100644 --- a/benchmarks/nttcp/Makefile +++ b/benchmarks/nttcp/Makefile @@ -22,9 +22,15 @@ PLIST_FILES= bin/nttcp USE_GMAKE= yes MAKE_ENV+= OPT="${CFLAGS}" +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502126 +BROKEN= "Broken by make(1) changes on FreeBSD >= 5.x" +.endif + do-install: ${INSTALL_PROGRAM} ${WRKSRC}/nttcp ${PREFIX}/bin/ ${INSTALL_MAN} ${WRKSRC}/nttcp.1 ${PREFIX}/man/man1/ -.include <bsd.port.mk> +.include <bsd.port.post.mk> |