summaryrefslogtreecommitdiff
path: root/graphics/darktable
diff options
context:
space:
mode:
authorjperkin <jperkin>2014-02-19 09:44:56 +0000
committerjperkin <jperkin>2014-02-19 09:44:56 +0000
commitb8f9dc268eb36c8c8c8aacaefbb1cca070065ddb (patch)
treef9bf03ff3753cfbbdd953edaa7872f72cc4a070e /graphics/darktable
parentf38f3b85209ec5232ae031bfbb30297419917459 (diff)
downloadpkgsrc-b8f9dc268eb36c8c8c8aacaefbb1cca070065ddb.tar.gz
GCC_REQD should be appended to, not set.
Fixes issues where a newer GCC has been chosen by the user but the GCC_REQD was forcing an older (and broken) one to be pulled regardless.
Diffstat (limited to 'graphics/darktable')
-rw-r--r--graphics/darktable/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/darktable/Makefile b/graphics/darktable/Makefile
index 1e4f64b9e28..bc3a67861c3 100644
--- a/graphics/darktable/Makefile
+++ b/graphics/darktable/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.43 2014/02/12 23:17:59 tron Exp $
+# $NetBSD: Makefile,v 1.44 2014/02/19 09:44:56 jperkin Exp $
DISTNAME= darktable-1.2.3
PKGREVISION= 2
@@ -41,7 +41,7 @@ LDFLAGS+= ${COMPILER_RPATH_FLAG}${PREFIX}/lib/darktable
.include "../../mk/bsd.fast.prefs.mk"
.if ${MACHINE_ARCH} == "i386"
# SSE alignment issues
-GCC_REQD= 4.2
+GCC_REQD+= 4.2
CFLAGS+= -mstackrealign -msse2 -march=i686
.endif