diff options
author | Gerald Pfeifer <gerald@FreeBSD.org> | 2017-03-26 20:01:07 +0000 |
---|---|---|
committer | Gerald Pfeifer <gerald@FreeBSD.org> | 2017-03-26 20:01:07 +0000 |
commit | f0653f107896de841ebac88d1fd8740182e632ad (patch) | |
tree | 26899aff253dec56e5d0dfa487a5cfbeb0d0ae2e /lang/gcc | |
parent | Update x11/kde4-runtime to to 16.12.3. (diff) |
Use relative links for the generic g++, gcc, and gfortran.
Replace a shell for-loop with a bmake .for-loop on the way.
Reported by: danfe
Reviewed by: danfe
Diffstat (limited to '')
-rw-r--r-- | lang/gcc/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lang/gcc/Makefile b/lang/gcc/Makefile index 1b7644fab29d..7899f9ce75ff 100644 --- a/lang/gcc/Makefile +++ b/lang/gcc/Makefile @@ -3,6 +3,7 @@ PORTNAME= gcc PORTVERSION= 4.9.4 +PORTREVISION= 1 CATEGORIES= lang java MASTER_SITES= GCC/releases/gcc-${DISTVERSION} @@ -163,8 +164,8 @@ post-stage: cd ${WRKDIR} ; ${SED} -i -e "/PLIST.lib/ r PLIST.lib" ${TMPPLIST} # This is the canonical GCC port, so add key commands without # version numbers as part of their names. - for c in gfortran g++ gcc; do \ - ${LN} -s ${PREFIX}/bin/"$$c"${SUFFIX} ${STAGEDIR}${PREFIX}/bin/$$c ; \ - done +.for c in gfortran g++ gcc + ${LN} -s ${c}${SUFFIX} ${STAGEDIR}${PREFIX}/bin/${c} +.endfor .include <bsd.port.post.mk> |