[Zope-Checkins] SVN: Zope/branches/Zope-2_8-branch/inst/Makefile.in
fix file and directory permissions before generating the tarball
Andreas Jung
andreas at andreas-jung.com
Mon Mar 26 08:55:58 EDT 2007
Log message for revision 73625:
fix file and directory permissions before generating the tarball
Changed:
U Zope/branches/Zope-2_8-branch/inst/Makefile.in
-=-
Modified: Zope/branches/Zope-2_8-branch/inst/Makefile.in
===================================================================
--- Zope/branches/Zope-2_8-branch/inst/Makefile.in 2007-03-26 12:50:23 UTC (rev 73624)
+++ Zope/branches/Zope-2_8-branch/inst/Makefile.in 2007-03-26 12:55:57 UTC (rev 73625)
@@ -117,6 +117,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} ${TMPDIR}
${CD} ${TMPDIR} && ${LN} ${BASE_DIR} ${PACKAGE_NAME} && \
${TAR} czfh ${BASE_DIR}/${PACKAGE_NAME}.tgz \
More information about the Zope-Checkins
mailing list