diff options
author | Gerald Pfeifer <gerald@FreeBSD.org> | 2005-07-16 20:26:33 +0800 |
---|---|---|
committer | Gerald Pfeifer <gerald@FreeBSD.org> | 2005-07-16 20:26:33 +0800 |
commit | a13701decc6dfc8cf30205d142ceaaf64676278f (patch) | |
tree | 93f6c44bed0af5e7c6c2c02ede2367ea9e61a540 /lang/gcc45 | |
parent | bcc6e48d3e2c64e68984a945e5e8e174ef5bba1c (diff) | |
download | freebsd-ports-gnome-a13701decc6dfc8cf30205d142ceaaf64676278f.tar.gz freebsd-ports-gnome-a13701decc6dfc8cf30205d142ceaaf64676278f.tar.zst freebsd-ports-gnome-a13701decc6dfc8cf30205d142ceaaf64676278f.zip |
No longer put target specific files and include files at the very
end of pkg-plist since that broke the /sbin/ldconfig invocations the
ports machinery added there (before we'd get a chance).[1]
Reported by: dinoex [1]
Diffstat (limited to 'lang/gcc45')
-rw-r--r-- | lang/gcc45/Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lang/gcc45/Makefile b/lang/gcc45/Makefile index bcdb153a2197..038b401d4bc4 100644 --- a/lang/gcc45/Makefile +++ b/lang/gcc45/Makefile @@ -167,11 +167,11 @@ post-install: | ${SED} -e 's/^/@dirrm /g' >>${WRKDIR}/PLIST.lib ;\ fi .endfor - ${CAT} ${WRKDIR}/PLIST.lib >> ${TMPPLIST} - ${ECHO_CMD} "@unexec ${RMDIR} %D/lib/gcc/${CONFIGURE_TARGET} 2>&1 || true" >> ${TMPPLIST} - ${ECHO_CMD} "@unexec ${RMDIR} %D/lib/gcc 2>&1 || true" >> ${TMPPLIST} - ${ECHO_CMD} "@unexec ${RMDIR} %D/libexec/gcc/${CONFIGURE_TARGET} 2>&1 || true" >> ${TMPPLIST} - ${ECHO_CMD} "@unexec ${RMDIR} %D/libexec/gcc 2>&1 || true" >> ${TMPPLIST} + ${ECHO_CMD} "@unexec ${RMDIR} %D/lib/gcc/${CONFIGURE_TARGET} 2>&1 || true" >> ${WRKDIR}/PLIST.lib + ${ECHO_CMD} "@unexec ${RMDIR} %D/lib/gcc 2>&1 || true" >> ${WRKDIR}/PLIST.lib + ${ECHO_CMD} "@unexec ${RMDIR} %D/libexec/gcc/${CONFIGURE_TARGET} 2>&1 || true" >> ${WRKDIR}/PLIST.lib + ${ECHO_CMD} "@unexec ${RMDIR} %D/libexec/gcc 2>&1 || true" >> ${WRKDIR}/PLIST.lib + cd ${WRKDIR} ; ${SED} -i -e "/PLIST.lib/ r PLIST.lib" ${TMPPLIST} cklatest: .for SITE in ftp://gcc.gnu.org/pub/gcc/snapshots/ |