diff options
author | tron <tron@pkgsrc.org> | 1999-06-20 21:06:17 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 1999-06-20 21:06:17 +0000 |
commit | 8475357fcd44f8afef46da0afc8f784088829200 (patch) | |
tree | ac9aebfa40184ccffd2322a82fcf7fdec10ca5a3 /net | |
parent | 0eb0234d0d184715f6af223e4c18be9359b3d59f (diff) | |
download | pkgsrc-8475357fcd44f8afef46da0afc8f784088829200.tar.gz |
Don't use "{}" or "[]" in "ONLY_FOR_PLATFORM" or "NOT_FOR_PLATFORM"
because "bsd.pkg.mk" can't handle those patterns. Fixes PR pkg/7808
by Chris Demetriou.
Diffstat (limited to 'net')
-rw-r--r-- | net/coda5_client/Makefile | 4 | ||||
-rw-r--r-- | net/coda5_server/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/net/coda5_client/Makefile b/net/coda5_client/Makefile index cb7fc0bf25e..21c8dda0481 100644 --- a/net/coda5_client/Makefile +++ b/net/coda5_client/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 1999/06/04 23:46:56 rvb Exp $ +# $NetBSD: Makefile,v 1.16 1999/06/20 21:06:21 tron Exp $ # DISTNAME= coda-5.2.4 @@ -13,7 +13,7 @@ HOMEPAGE= http://www.coda.cs.cmu.edu/ DEPENDS= gdbm-1.7.3:../../databases/gdbm \ readline-2.2:../../devel/readline -ONLY_FOR_PLATFORM= NetBSD-*-{arm32,i386,ns32k} +ONLY_FOR_PLATFORM= NetBSD-*-arm32 NetBSD-*-i386 NetBSD-*-ns32k #LICENSE= GPL diff --git a/net/coda5_server/Makefile b/net/coda5_server/Makefile index 8ba47a67318..22158c1c502 100644 --- a/net/coda5_server/Makefile +++ b/net/coda5_server/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.15 1999/06/04 23:45:41 rvb Exp $ +# $NetBSD: Makefile,v 1.16 1999/06/20 21:06:21 tron Exp $ # DISTNAME= coda-5.2.4 @@ -13,7 +13,7 @@ HOMEPAGE= http://www.coda.cs.cmu.edu/ DEPENDS= gdbm-1.7.3:../../databases/gdbm \ readline-2.2:../../devel/readline -ONLY_FOR_PLATFORM= *-*-{arm32,i386,ns32k} +ONLY_FOR_PLATFORM= *-*-arm32 *-*-i386 *-*-ns32k #LICENSE= GPL |