diff options
author | tron <tron> | 1999-06-20 21:06:17 +0000 |
---|---|---|
committer | tron <tron> | 1999-06-20 21:06:17 +0000 |
commit | 4ef4a52c1bb0431037a845c4362f18fc64698dd3 (patch) | |
tree | ac9aebfa40184ccffd2322a82fcf7fdec10ca5a3 /emulators/compat12 | |
parent | cd7cfe6921e0b3db1af892b2787ef7cb8e585e6e (diff) | |
download | pkgsrc-4ef4a52c1bb0431037a845c4362f18fc64698dd3.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 'emulators/compat12')
-rw-r--r-- | emulators/compat12/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/emulators/compat12/Makefile b/emulators/compat12/Makefile index 50485e10aa0..a699bb4087f 100644 --- a/emulators/compat12/Makefile +++ b/emulators/compat12/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 1999/05/24 20:39:39 tv Exp $ +# $NetBSD: Makefile,v 1.14 1999/06/20 21:06:19 tron Exp $ # DISTNAME= compat12-${MACHINE_ARCH} @@ -9,7 +9,8 @@ MASTER_SITES= ${MASTER_SITE_LOCAL} MAINTAINER= tv@netbsd.org HOMEPAGE= http://www.netbsd.org/Releases/formal-1.2/index.html -ONLY_FOR_PLATFORM= NetBSD-*-{i386,m68k,ns32k,sparc} +ONLY_FOR_PLATFORM= NetBSD-*-i386 NetBSD-*-m68k NetBSD-*-ns32k \ + NetBSD-*-sparc NO_BUILD= |