diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2004-12-10 02:06:12 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2004-12-10 02:06:12 +0000 |
commit | 45fc2a595c0c700a89c500123585dab54d6a05d0 (patch) | |
tree | 8cc229e5eeb412faf967cc7886460d5593ec6bc6 /www/linux-mozilla | |
parent | d0fdf95ebdfc071d98de4c5e8afb44a651a290de (diff) | |
download | ports-45fc2a595c0c700a89c500123585dab54d6a05d0.tar.gz ports-45fc2a595c0c700a89c500123585dab54d6a05d0.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)
Notes
Notes:
svn path=/head/; revision=123605
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/ |