From 76d97d8453b1b822cce0847ff70b3ccfcde73b67 Mon Sep 17 00:00:00 2001 From: gerald Date: Sun, 17 Sep 2017 17:51:24 +0000 Subject: Do not quote constant strings compared with ${ARCH}. [1] Remove some commented (and thus disabled) logic around this on the way. This brings the active lang/gcc* release-based ports in sync with their respective lang/gcc*-devel twins. PR: 221905 [1] Submitted by: linimon [1] --- lang/gcc6/Makefile | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'lang/gcc6') diff --git a/lang/gcc6/Makefile b/lang/gcc6/Makefile index cc3e7407dd5b..e01087e573f3 100644 --- a/lang/gcc6/Makefile +++ b/lang/gcc6/Makefile @@ -62,7 +62,7 @@ CONFIGURE_ARGS+= --disable-multilib .include -.if ${ARCH} == "amd64" +.if ${ARCH} == amd64 CONFIGURE_TARGET= x86_64-portbld-${OPSYS:tl}${OSREL} .endif @@ -71,7 +71,7 @@ CONFIGURE_ENV+= UNAME_m="powerpc64" USE_GCC= 5 # Cannot require ourselves, needs to be at least 4.9. .endif -.if ${ARCH} == "aarch64" || ${ARCH} == "armv6" +.if ${ARCH} == aarch64 || ${ARCH} == armv6 . if ${COMPILER_TYPE} == clang . if empty(PORT_OPTIONS:MBOOTSTRAP) MAKE_ARGS+=CXXFLAGS=-fbracket-depth=512 @@ -117,10 +117,8 @@ INFO= gcc${SUFFIX}/cpp \ gcc${SUFFIX}/gfortran \ gcc${SUFFIX}/libgomp # Release tarballs (as opposed to snapshots) always carry this. -#.if ${ARCH} == "amd64" || ${ARCH} == "i386" INFO+= gcc${SUFFIX}/libquadmath \ gcc${SUFFIX}/libitm -#.endif SUB_FILES= pkg-message SUB_LIST+= TARGLIB=${TARGLIB} -- cgit