diff options
author | cjep <cjep> | 2002-05-20 13:14:19 +0000 |
---|---|---|
committer | cjep <cjep> | 2002-05-20 13:14:19 +0000 |
commit | af07013a7002ee4a1ca5784b1ad18f5b044d59cd (patch) | |
tree | cf45643dda451ebaf396bc2e52ee3b2e3acbb136 /emulators | |
parent | 244bebbcba35a1277fe10c6f95e9b476418ba0f8 (diff) | |
download | pkgsrc-af07013a7002ee4a1ca5784b1ad18f5b044d59cd.tar.gz |
On arm32, turn off optimization so that this package builds.
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/xmame/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/emulators/xmame/Makefile b/emulators/xmame/Makefile index 566f911b20b..de0a623c559 100644 --- a/emulators/xmame/Makefile +++ b/emulators/xmame/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.74 2002/05/17 13:21:30 abs Exp $ +# $NetBSD: Makefile,v 1.75 2002/05/20 13:14:19 cjep Exp $ # DISTNAME= xmame-0.60.1 @@ -23,6 +23,10 @@ UNLIMIT_RESOURCES= datasize .include "../../mk/bsd.prefs.mk" +.if (${MACHINE_ARCH} == "arm32" && ${CFLAGS} == "-O2") +CFLAGS= -O0 +.endif + ROMPATH= ${PREFIX}/share/${TARGET} SPOOLDIR= /var/games/${TARGET} |