diff options
author | wiz <wiz@pkgsrc.org> | 2014-04-23 20:07:48 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2014-04-23 20:07:48 +0000 |
commit | 70a21e9faaf73afd115478fc9d20f835d470f5ff (patch) | |
tree | 964d9f8434912af5faa150864e7a33784c66be5e /emulators | |
parent | 49b727701baa6ef0a61b47bd68e2cadceb49c2c4 (diff) | |
download | pkgsrc-70a21e9faaf73afd115478fc9d20f835d470f5ff.tar.gz |
Fix NOT_FOR_PLATFORM; the second one was overwriting the first.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/qemu/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/emulators/qemu/Makefile b/emulators/qemu/Makefile index 72ca81557d9..c113b25463d 100644 --- a/emulators/qemu/Makefile +++ b/emulators/qemu/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.124 2014/04/18 15:50:16 adam Exp $ +# $NetBSD: Makefile,v 1.125 2014/04/23 20:07:48 wiz Exp $ DISTNAME= qemu-2.0.0 CATEGORIES= emulators @@ -11,10 +11,10 @@ COMMENT= CPU emulator using dynamic translation LICENSE= gnu-gpl-v2 AND gnu-lgpl-v2.1 AND mit AND modified-bsd CONFLICTS+= qemu-bin-[0-9]* -NOT_FOR_PLATFORM= NetBSD-1.[0-6]*-* +NOT_FOR_PLATFORM+= NetBSD-1.[0-6]*-* # qemu 1 does not work on NetBSD-5; see http://gnats.netbsd.org/46565. # As a workaround, use emulators/qemu0. -NOT_FOR_PLATFORM= NetBSD-5*-* +NOT_FOR_PLATFORM+= NetBSD-5*-* USE_TOOLS+= bison gmake makeinfo perl:build pkg-config USE_NCURSES= yes # requires resize_term() |