diff options
author | cjep <cjep> | 2002-06-25 09:21:35 +0000 |
---|---|---|
committer | cjep <cjep> | 2002-06-25 09:21:35 +0000 |
commit | ca2cf972b24e3524a91435dcccc1a962e095ee97 (patch) | |
tree | 51c31398d1331d68f9b7ecb06043a76c9c55a6d9 /emulators | |
parent | 16d3be72d864940a135348feff45760280958233 (diff) | |
download | pkgsrc-ca2cf972b24e3524a91435dcccc1a962e095ee97.tar.gz |
Fix previous CFLAGS change.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/xmame/Makefile | 4 | ||||
-rw-r--r-- | emulators/xmess/Makefile | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/emulators/xmame/Makefile b/emulators/xmame/Makefile index 8d3c063b894..b73c8b6ebcf 100644 --- a/emulators/xmame/Makefile +++ b/emulators/xmame/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.76 2002/06/20 06:51:21 cjep Exp $ +# $NetBSD: Makefile,v 1.77 2002/06/25 09:21:35 cjep Exp $ # DISTNAME= xmame-0.60.1 @@ -25,7 +25,7 @@ UNLIMIT_RESOURCES= datasize .if (${MACHINE_ARCH} == "arm32" || ${MACHINE_ARCH} == "arm") .if (${CFLAGS:M-O2} == "-O2") -CFLAGS= ${CFLAGS:S/-O2/-O0/} +CFLAGS:= ${CFLAGS:S/-O2/-O0/} .endif .endif diff --git a/emulators/xmess/Makefile b/emulators/xmess/Makefile index 2ae39d761b4..fbcfeaa523e 100644 --- a/emulators/xmess/Makefile +++ b/emulators/xmess/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.22 2002/06/20 06:51:20 cjep Exp $ +# $NetBSD: Makefile,v 1.23 2002/06/25 09:21:35 cjep Exp $ # DISTNAME= xmame-0.56.2 @@ -26,7 +26,7 @@ UNLIMIT_RESOURCES= datasize # XXX On arm(32), the src/unix/video_drivers/x11_window.c causes problems .if (${MACHINE_ARCH} == "arm32" || ${MACHINE_ARCH} == "arm") .if (${CFLAGS:M-O2} == "-O2") -CFLAGS= ${CFLAGS:S/-O2/-O0/} +CFLAGS:= ${CFLAGS:S/-O2/-O0/} .endif .endif |