diff options
author | dholland <dholland@pkgsrc.org> | 2015-01-01 09:14:31 +0000 |
---|---|---|
committer | dholland <dholland@pkgsrc.org> | 2015-01-01 09:14:31 +0000 |
commit | 9c3e3784fa6a5c4efdaad5d63238133a985f29e7 (patch) | |
tree | 38524b38ef62606473f246c5289d94a957ce3e1a /benchmarks | |
parent | 6452ecc562ae84e996951560b8a69ae98feac04e (diff) | |
download | pkgsrc-9c3e3784fa6a5c4efdaad5d63238133a985f29e7.tar.gz |
NOT_FOR_PLATFORM can be used together with ONLY_FOR_PLATFORM, so simplify
the logic and make it not fail when we hit NetBSD 10.
Diffstat (limited to 'benchmarks')
-rw-r--r-- | benchmarks/kttcp/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/benchmarks/kttcp/Makefile b/benchmarks/kttcp/Makefile index 3a455538b54..d55335f2b89 100644 --- a/benchmarks/kttcp/Makefile +++ b/benchmarks/kttcp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.21 2014/10/09 14:05:59 wiz Exp $ +# $NetBSD: Makefile,v 1.22 2015/01/01 09:14:31 dholland Exp $ DISTNAME= kttcp-20020711 CATEGORIES= benchmarks net @@ -9,7 +9,9 @@ DISTFILES= # empty MAINTAINER= pkgsrc-users@NetBSD.org COMMENT= Kernel network throughput benchmark -ONLY_FOR_PLATFORM= NetBSD-1.6[B-Z]*-* NetBSD-[2-9]*-* +ONLY_FOR_PLATFORM= NetBSD-*-* +NOT_FOR_PLATFORM= NetBSD-1.[0-5]*-* \ + NetBSD-1.6-* NetBSD-1.6.*-* NetBSD-1.6A-* USE_BSD_MAKEFILE= yes WRKSRC= ${WRKDIR} |