diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2014-04-07 10:12:44 +0000 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2014-04-07 10:12:44 +0000 |
commit | f50429eaaac4c867a1cbef1bba4990ab04381831 (patch) | |
tree | 6383e000b9b2d7e9b94370bfab64abb2a33f8e9e | |
parent | 2d7a9315ad460eb28d7db994b8745162dafb7c03 (diff) | |
download | FreeBSD-ports-f50429eaaac4c867a1cbef1bba4990ab04381831.zip FreeBSD-ports-f50429eaaac4c867a1cbef1bba4990ab04381831.tar.gz |
- Respect CC and CXX
Notified by: gerald
-rw-r--r-- | devel/bisoncpp/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/devel/bisoncpp/Makefile b/devel/bisoncpp/Makefile index 9d7398a..a1a5ad8 100644 --- a/devel/bisoncpp/Makefile +++ b/devel/bisoncpp/Makefile @@ -47,11 +47,11 @@ post-patch: @${REINPLACE_CMD} 's|%%PREFIX%%|${PREFIX}|g; \ s|%%PORTVERSION%%|${PORTVERSION}|g' \ ${WRKSRC}/INSTALL.im - @${REINPLACE_CMD} 's|"g++|"g++47|' \ + @${REINPLACE_CMD} 's|"g++|"${CXX}|' \ ${WRKSRC}/INSTALL.im \ ${WRKSRC}/scanner/driver/build \ ${WRKSRC}/parser/driver/build - @${REINPLACE_CMD} 's|"gcc|"gcc47|' \ + @${REINPLACE_CMD} 's|"gcc|"${CC}|' \ ${WRKSRC}/icmake/special @${REINPLACE_CMD} 's|"cp -d |"cp -Pp | ; \ s|"cp -r |"cp -R | ; \ |