summaryrefslogtreecommitdiff
path: root/audio/taglib
diff options
context:
space:
mode:
authorobache <obache>2013-10-24 06:08:44 +0000
committerobache <obache>2013-10-24 06:08:44 +0000
commitb97cc9e9182230b1bef98c5ce27cfb737815998f (patch)
treede6edd860460326e3ea2df38248eb81a40f0c699 /audio/taglib
parent5fe89296e5afa3edf13c46f2881a278df3dd6b7c (diff)
downloadpkgsrc-b97cc9e9182230b1bef98c5ce27cfb737815998f.tar.gz
fixes i486 magic condition.
Diffstat (limited to 'audio/taglib')
-rw-r--r--audio/taglib/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/taglib/Makefile b/audio/taglib/Makefile
index f5f4ac5b580..7938398d336 100644
--- a/audio/taglib/Makefile
+++ b/audio/taglib/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.32 2013/10/17 07:30:39 wiz Exp $
+# $NetBSD: Makefile,v 1.33 2013/10/24 06:08:44 obache Exp $
DISTNAME= taglib-1.9.1
CATEGORIES= audio
@@ -28,7 +28,7 @@ SUBST_MESSAGE.pc= Fixing rpath in taglib-config.
#
# depends on builtin functions which enabled with i486 and later with GCC.
#
-.if ${OPSYS} == "NetBSD" && !empty(CC_VERSION:M[4-9]*) && !empty(MACHINE_ARCH:Mi386)
+.if ${OPSYS} == "NetBSD" && !empty(CC_VERSION:Mgcc-[4-9]*) && !empty(MACHINE_ARCH:Mi386)
GNU_ARCH.i386= i486
CFLAGS+= -march=i486
.endif