summaryrefslogtreecommitdiff
path: root/emulators
diff options
context:
space:
mode:
authorxtraeme <xtraeme>2005-05-18 13:07:32 +0000
committerxtraeme <xtraeme>2005-05-18 13:07:32 +0000
commitb9c0886eea8b6b0ce74536cbf405d917d1f781e6 (patch)
tree6a9a9fb15aef5eea8b3620b2b2a12f85d17fb342 /emulators
parent4f405b5cb13dbf2cb560bf718b9215ef78b3d1c6 (diff)
downloadpkgsrc-b9c0886eea8b6b0ce74536cbf405d917d1f781e6.tar.gz
Remove -march/-mcpu from CFLAGS to fix the build by using
BUILDLINK_TRANSFORM+= rm-optarg, fixes build when using these flags.
Diffstat (limited to 'emulators')
-rw-r--r--emulators/qemu/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/emulators/qemu/Makefile b/emulators/qemu/Makefile
index b1521c1fcec..3e12a04156b 100644
--- a/emulators/qemu/Makefile
+++ b/emulators/qemu/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.11 2005/05/07 15:01:45 wiz Exp $
+# $NetBSD: Makefile,v 1.12 2005/05/18 13:07:32 xtraeme Exp $
#
DISTNAME= qemu-0.7.0
@@ -27,6 +27,10 @@ SUBST_FILES.snd= audio/ossaudio.c
SUBST_SED.snd= -e "s,/dev/dsp,${DEVOSSAUDIO},g"
SUBST_MESSAGE.snd= "Fixing hardcoded audio device."
+# Remove -march/-mcpu from CFLAGS, otherwise it will fail
+# to build in the SSE code.
+BUILDLINK_TRANSFORM+= rm-optarg:-march rm-optarg:-mcpu
+
.include "../../devel/SDL/buildlink3.mk"
.include "../../mk/ossaudio.buildlink3.mk"
.include "../../mk/pthread.buildlink3.mk"