diff options
author | linimon <linimon@FreeBSD.org> | 2017-06-26 22:50:12 +0000 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2017-06-26 22:50:12 +0000 |
commit | 03bd9e8f40f006d96fe8256d35ffd7e955bc9882 (patch) | |
tree | 64a6aae1795de65ff30892f591efecdfafc72589 | |
parent | 261b3491725f11c4eab1f9bb1440e8f65ece6cb9 (diff) | |
download | FreeBSD-ports-03bd9e8f40f006d96fe8256d35ffd7e955bc9882.zip FreeBSD-ports-03bd9e8f40f006d96fe8256d35ffd7e955bc9882.tar.gz |
Alphabetize ARCH definitions.
No need to bump PORTREVISION because package does not change.
Reviewed by: gerald
Approved by: portmgr (tier-2 blanket)
-rw-r--r-- | lang/gcc5/Makefile | 4 | ||||
-rw-r--r-- | lang/gcc6-devel/Makefile | 4 | ||||
-rw-r--r-- | lang/gcc6/Makefile | 4 | ||||
-rw-r--r-- | lang/gcc7-devel/Makefile | 2 | ||||
-rw-r--r-- | lang/gcc8-devel/Makefile | 2 |
5 files changed, 8 insertions, 8 deletions
diff --git a/lang/gcc5/Makefile b/lang/gcc5/Makefile index f41eae8..189ac12 100644 --- a/lang/gcc5/Makefile +++ b/lang/gcc5/Makefile @@ -68,7 +68,7 @@ CONFIGURE_TARGET= x86_64-portbld-${OPSYS:tl}${OSREL} CONFIGURE_ENV+= UNAME_m="powerpc64" .endif -.if ${ARCH} == "armv6" || ${ARCH} == "aarch64" +.if ${ARCH} == "aarch64" || ${ARCH} == "armv6" . if ${COMPILER_TYPE} == clang . if empty(PORT_OPTIONS:MBOOTSTRAP) MAKE_ARGS+=CXXFLAGS=-fbracket-depth=512 @@ -115,7 +115,7 @@ INFO= gcc${SUFFIX}/cpp \ gcc${SUFFIX}/gfortran \ gcc${SUFFIX}/libgomp # Release tarballs (as opposed to snapshots) always carry this. -#.if ${ARCH} == "i386" || ${ARCH} == "amd64" +#.if ${ARCH} == "amd64" || ${ARCH} == "i386" INFO+= gcc${SUFFIX}/libquadmath \ gcc${SUFFIX}/libitm #.endif diff --git a/lang/gcc6-devel/Makefile b/lang/gcc6-devel/Makefile index 62c2efb..5e096f4 100644 --- a/lang/gcc6-devel/Makefile +++ b/lang/gcc6-devel/Makefile @@ -75,7 +75,7 @@ CONFIGURE_ENV+= UNAME_m="powerpc64" USE_GCC= 5 # Cannot require ourselves, needs to be at least 4.9. .endif -.if ${ARCH} == "armv6" || ${ARCH} == "aarch64" +.if ${ARCH} == "aarch64" || ${ARCH} == "armv6" . if ${COMPILER_TYPE} == clang . if empty(PORT_OPTIONS:MBOOTSTRAP) MAKE_ARGS+=CXXFLAGS=-fbracket-depth=512 @@ -120,7 +120,7 @@ INFO= gcc${SUFFIX}/cpp \ gcc${SUFFIX}/gccint \ gcc${SUFFIX}/gfortran \ gcc${SUFFIX}/libgomp -.if ${ARCH} == "i386" || ${ARCH} == "amd64" +.if ${ARCH} == "amd64" || ${ARCH} == "i386" INFO+= gcc${SUFFIX}/libquadmath \ gcc${SUFFIX}/libitm .endif diff --git a/lang/gcc6/Makefile b/lang/gcc6/Makefile index cfb0eff..3eaac6a 100644 --- a/lang/gcc6/Makefile +++ b/lang/gcc6/Makefile @@ -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} == "armv6" || ${ARCH} == "aarch64" +.if ${ARCH} == "aarch64" || ${ARCH} == "armv6" . if ${COMPILER_TYPE} == clang . if empty(PORT_OPTIONS:MBOOTSTRAP) MAKE_ARGS+=CXXFLAGS=-fbracket-depth=512 @@ -117,7 +117,7 @@ INFO= gcc${SUFFIX}/cpp \ gcc${SUFFIX}/gfortran \ gcc${SUFFIX}/libgomp # Release tarballs (as opposed to snapshots) always carry this. -#.if ${ARCH} == "i386" || ${ARCH} == "amd64" +#.if ${ARCH} == "amd64" || ${ARCH} == "i386" INFO+= gcc${SUFFIX}/libquadmath \ gcc${SUFFIX}/libitm #.endif diff --git a/lang/gcc7-devel/Makefile b/lang/gcc7-devel/Makefile index 5c0b946..3c66ee1 100644 --- a/lang/gcc7-devel/Makefile +++ b/lang/gcc7-devel/Makefile @@ -110,7 +110,7 @@ INFO= gcc${SUFFIX}/cpp \ gcc${SUFFIX}/gccint \ gcc${SUFFIX}/gfortran \ gcc${SUFFIX}/libgomp -.if ${ARCH} == "i386" || ${ARCH} == "amd64" +.if ${ARCH} == "amd64" || ${ARCH} == "i386" INFO+= gcc${SUFFIX}/libquadmath \ gcc${SUFFIX}/libitm .endif diff --git a/lang/gcc8-devel/Makefile b/lang/gcc8-devel/Makefile index 13611fd..1e1d399 100644 --- a/lang/gcc8-devel/Makefile +++ b/lang/gcc8-devel/Makefile @@ -110,7 +110,7 @@ INFO= gcc${SUFFIX}/cpp \ gcc${SUFFIX}/gccint \ gcc${SUFFIX}/gfortran \ gcc${SUFFIX}/libgomp -.if ${ARCH} == "i386" || ${ARCH} == "amd64" +.if ${ARCH} == "amd64" || ${ARCH} == "i386" INFO+= gcc${SUFFIX}/libquadmath \ gcc${SUFFIX}/libitm .endif |