diff options
author | trevor <trevor@FreeBSD.org> | 2004-12-10 10:06:12 +0800 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2004-12-10 10:06:12 +0800 |
commit | 615f41f5f70a8498c6b2d32af687b844aebbd524 (patch) | |
tree | a53b4b2aac72f8fafce9dc30f6797b4b3fc23a92 /www/linux-mozilla | |
parent | 822505dc6151d372e8564a6c8ccfe38fed191707 (diff) | |
download | freebsd-ports-gnome-615f41f5f70a8498c6b2d32af687b844aebbd524.tar.gz freebsd-ports-gnome-615f41f5f70a8498c6b2d32af687b844aebbd524.tar.zst freebsd-ports-gnome-615f41f5f70a8498c6b2d32af687b844aebbd524.zip |
In order to fix the permissions on the extracted files as soon as
possible, run chmod right after unzipping each distfile, as before.
Approved by: sf (carte blanche)
Diffstat (limited to 'www/linux-mozilla')
-rw-r--r-- | www/linux-mozilla/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/www/linux-mozilla/Makefile b/www/linux-mozilla/Makefile index 8b38ff1bb0d3..5e070e9f66a9 100644 --- a/www/linux-mozilla/Makefile +++ b/www/linux-mozilla/Makefile @@ -65,6 +65,7 @@ do-extract: ${MKDIR} ${WRKSRC} .for i in ${DISTFILES} ${UNZIP_CMD} -qo ${DISTDIR}/${DIST_SUBDIR}/${i} -d ${WRKSRC} + ${CHMOD} -R o-w ${WRKSRC} .endfor do-configure: @@ -108,7 +109,6 @@ do-install: ${MKDIR} ${INSTALL_DIR} ${CP} -Rp ${WRKSRC}/bin/* ${INSTALL_DIR} ${CHOWN} -R ${BINOWN}:${BINGRP} ${INSTALL_DIR} - ${CHMOD} -R a-w ${INSTALL_DIR} ${INSTALL_SCRIPT} ${WRKDIR}/${STARTUP_CMD} ${PREFIX}/bin ${INSTALL_SCRIPT} ${WRKDIR}/linkfarm ${PREFIX}/lib/linux-mozilla/ |