[Zope-Checkins] SVN: Zope/branches/2.9/inst/Makefile.in fix the
file permissions before building the tar ball (experimental)
Andreas Jung
andreas at andreas-jung.com
Wed Oct 4 06:59:17 EDT 2006
Log message for revision 70520:
fix the file permissions before building the tar ball (experimental)
Changed:
U Zope/branches/2.9/inst/Makefile.in
-=-
Modified: Zope/branches/2.9/inst/Makefile.in
===================================================================
--- Zope/branches/2.9/inst/Makefile.in 2006-10-04 10:56:39 UTC (rev 70519)
+++ Zope/branches/2.9/inst/Makefile.in 2006-10-04 10:59:16 UTC (rev 70520)
@@ -119,6 +119,8 @@
# sdist_tgz: Create a tgz archive file as a source distribution.
#
sdist_tgz: version_txt
+ ${FIND} . -type f -exec chmod a+r {} \;
+ ${FIND} . -type d -exec chmod a+rx {} \;
${MKDIR} ${TMP_DIR}
${CD} ${TMP_DIR} && ${LN} ${BASE_DIR} ${PACKAGE_NAME} && \
${TAR} czfh ${BASE_DIR}/${PACKAGE_NAME}.tgz \
More information about the Zope-Checkins
mailing list