diff options
author | gerald <gerald@FreeBSD.org> | 2014-02-15 23:59:38 +0800 |
---|---|---|
committer | gerald <gerald@FreeBSD.org> | 2014-02-15 23:59:38 +0800 |
commit | aee97c62a2e77d10e2f925e97c61c4d91d107d84 (patch) | |
tree | 895ca90d8f9644884bd73fe7fd9c76d6478e398b | |
parent | b56c82285a06f53b5e1d602cdfc1109af184b823 (diff) | |
download | freebsd-ports-gnome-aee97c62a2e77d10e2f925e97c61c4d91d107d84.tar.gz freebsd-ports-gnome-aee97c62a2e77d10e2f925e97c61c4d91d107d84.tar.zst freebsd-ports-gnome-aee97c62a2e77d10e2f925e97c61c4d91d107d84.zip |
Remove the man7 pages, which we are not packaging, from the staging
area to silence some warnings some are concerned about. [1]
No longer run ccache-update-links as part of post-install which, in
the world of staging, no longer is what it used to be. Rely on the
existing @exec and @unexec in pkg-plist instead. [2]
Submitted by: miwi [1]
Discussed with: antoine [1][2]
-rw-r--r-- | lang/gcc46/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/lang/gcc46/Makefile b/lang/gcc46/Makefile index 6f92217948f0..8e5551a7654a 100644 --- a/lang/gcc46/Makefile +++ b/lang/gcc46/Makefile @@ -127,6 +127,7 @@ full-regression-test: build post-install: ${RM} -f ${STAGEDIR}${TARGLIB}/*.la + ${RM} -f ${STAGEDIR}${PREFIX}/man/man7/* # Add target libraries and include files to packaging list. ${RM} -f ${WRKDIR}/PLIST.lib .for d in ${TARGLIB:S/^${PREFIX}\///} ${LIBEXEC:S/^${PREFIX}\///} include/gcj include/gnu include/java include/javax @@ -137,8 +138,5 @@ post-install: fi .endfor cd ${WRKDIR} ; ${SED} -i -e "/PLIST.lib/ r PLIST.lib" ${TMPPLIST} - @if type ccache-update-links >/dev/null 2>&1; then \ - ccache-update-links -v; \ - fi .include <bsd.port.post.mk> |