diff options
author | tron <tron> | 1999-06-20 21:06:17 +0000 |
---|---|---|
committer | tron <tron> | 1999-06-20 21:06:17 +0000 |
commit | fcb2904bbad784fe7ba5a41560a09d3520c67adf (patch) | |
tree | ac9aebfa40184ccffd2322a82fcf7fdec10ca5a3 /comms/xisp | |
parent | 310016f923a15fdc1fcfdd34ac96390d82fdfdd3 (diff) | |
download | pkgsrc-fcb2904bbad784fe7ba5a41560a09d3520c67adf.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 'comms/xisp')
-rw-r--r-- | comms/xisp/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/comms/xisp/Makefile b/comms/xisp/Makefile index 8ce30e8eb79..fdb4ae26d78 100644 --- a/comms/xisp/Makefile +++ b/comms/xisp/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 1999/05/24 20:39:36 tv Exp $ +# $NetBSD: Makefile,v 1.7 1999/06/20 21:06:17 tron Exp $ # DISTNAME= xisp-2.5p4 @@ -12,7 +12,8 @@ HOMEPAGE= http://users.hol.gr/~dbouras/ DEPENDS+= xforms-0.88:../../x11/xforms DEPENDS+= xpm-3.4k:../../graphics/xpm -ONLY_FOR_PLATFORM= NetBSD-*-{arm32,i386,m68k,sparc,ns32k} +ONLY_FOR_PLATFORM= NetBSD-*-arm32 NetBSD-*-i386 NetBSD-*-m68k \ + NetBSD-*-sparc NetBSD-*-ns32k USE_X11BASE= |