summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwiz <wiz>2016-07-06 07:21:41 +0000
committerwiz <wiz>2016-07-06 07:21:41 +0000
commit1326b1c4502e0c778214e65811086554903c3f85 (patch)
treed4f15f851eb4dcab341d7005bf9d01c53cc89f3d
parent9a74f5dcad5e7670a5f8cc38a8d50bd85436d9fd (diff)
downloadpkgsrc-1326b1c4502e0c778214e65811086554903c3f85.tar.gz
Restore PKGSRC_USE_SSP test to the version before the update to 5.4.0,
so it works again (at least for me; if it doesn't for you, please let me know).
-rw-r--r--lang/gcc5/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/gcc5/Makefile b/lang/gcc5/Makefile
index d38fdcab402..9e3359960cf 100644
--- a/lang/gcc5/Makefile
+++ b/lang/gcc5/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.10 2016/07/05 18:55:08 ryoon Exp $
+# $NetBSD: Makefile,v 1.11 2016/07/06 07:21:41 wiz Exp $
GCC_PKGNAME= gcc5
.include "version.mk"
@@ -89,7 +89,7 @@ CONFIGURE_ARGS+= --enable-languages=${LANGS:Q}
CONFIGURE_ARGS+= --enable-shared
CONFIGURE_ARGS+= --enable-long-long
CONFIGURE_ARGS+= --with-local-prefix=${GCC_PREFIX:Q}
-.if !empty(MACHINE_PLATFORM:MNetBSD-*-*) && ${PKGSRC_USE_SSP:Uno} == "no"
+.if !empty(MACHINE_PLATFORM:MNetBSD-*-*) && ${PKGSRC_USE_SSP:Uno} != "no"
# on NetBSD with stack protector, use the native SSP code in libc
CONFIGURE_ARGS+= --disable-libssp
.else