diff options
author | cjep <cjep@pkgsrc.org> | 2002-05-20 13:14:19 +0000 |
---|---|---|
committer | cjep <cjep@pkgsrc.org> | 2002-05-20 13:14:19 +0000 |
commit | f72f1736c52fed8af97d269d5e49e281ef74f9e5 (patch) | |
tree | cf45643dda451ebaf396bc2e52ee3b2e3acbb136 /emulators | |
parent | 3435b0b3b1c80657ff2c122914b51ae52a963efb (diff) | |
download | pkgsrc-f72f1736c52fed8af97d269d5e49e281ef74f9e5.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} |