diff options
author | kris <kris@FreeBSD.org> | 2004-03-20 06:47:50 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-20 06:47:50 +0800 |
commit | 01d818de44c677929dac8e9e8ae5a0c9062378fe (patch) | |
tree | 9c2b104ffccfd3306e735c8d226a1d26a40a4d78 /audio | |
parent | 54604764590bb53a5e09073c453efdfbb8594200 (diff) | |
download | freebsd-ports-gnome-01d818de44c677929dac8e9e8ae5a0c9062378fe.tar.gz freebsd-ports-gnome-01d818de44c677929dac8e9e8ae5a0c9062378fe.tar.zst freebsd-ports-gnome-01d818de44c677929dac8e9e8ae5a0c9062378fe.zip |
Extend -fPIC hack to cover ia64, which also requires it, and properly
respect CFLAGS.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/xmms-mp3cue/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/xmms-mp3cue/Makefile b/audio/xmms-mp3cue/Makefile index b1e39549479c..2471c228f7e0 100644 --- a/audio/xmms-mp3cue/Makefile +++ b/audio/xmms-mp3cue/Makefile @@ -25,8 +25,8 @@ PLIST_SUB= PORTDOCS=${DISTNAME} .include <bsd.port.pre.mk> -.if ${ARCH} == "amd64" -CONFIGURE_ENV= CFLAGS="-fPIC" +.if ${ARCH} == "amd64" || ${ARCH} == "ia64" +CONFIGURE_ENV= CFLAGS="${CFLAGS} -fPIC" .endif post-patch: |