Plus de chmod sur les repertoires.

This commit is contained in:
Jean-Paul Chaput 2004-07-19 14:32:14 +00:00
parent d07106408f
commit a1fb5299c6
4 changed files with 4 additions and 4 deletions

View File

@ -9,4 +9,4 @@ pkghtml_DATA = \
EXTRA_DIST = $(pkghtml_DATA)
install-data-hook:
chmod -R g+w $(DESTDIR)$(prefix)/doc/html/@PACKAGE@
find -type f $(DESTDIR)$(prefix)/doc/html/@PACKAGE@ | xargs chmod g+w

View File

@ -89,7 +89,7 @@
echo "EXTRA_DIST = \$(pkghtml_DATA)" >> $DOC_AM
echo "" >> $DOC_AM
echo "install-data-hook:" >> $DOC_AM
echo " chmod -R g+w \$(DESTDIR)\$(prefix)/doc/html/@PACKAGE@" >> $DOC_AM
echo " find -type f \$(DESTDIR)\$(prefix)/doc/html/@PACKAGE@ | xargs chmod g+w" >> $DOC_AM
mv $DOC_AM $TOOL/Makefile.am

View File

@ -89,7 +89,7 @@
echo "EXTRA_DIST = \$(pkghtml_DATA)" >> $DOC_AM
echo "" >> $DOC_AM
echo "install-data-hook:" >> $DOC_AM
echo " chmod -R g+w \$(DESTDIR)\$(prefix)/doc/html/@PACKAGE@" >> $DOC_AM
echo " find \$(DESTDIR)\$(prefix)/doc/html/@PACKAGE@ -type f | xargs chmod g+w" >> $DOC_AM
mv $DOC_AM $TOOL/Makefile.am

View File

@ -9,4 +9,4 @@ pkghtml_DATA = \
EXTRA_DIST = $(pkghtml_DATA)
install-data-hook:
chmod -R g+w $(DESTDIR)$(prefix)/doc/html/@PACKAGE@
find $(DESTDIR)$(prefix)/doc/html/@PACKAGE@ -type f | xargs chmod g+w