diff --git a/alliance/src/attila/doc/attila/Makefile.am b/alliance/src/attila/doc/attila/Makefile.am index 428fb892..6ec88e5d 100644 --- a/alliance/src/attila/doc/attila/Makefile.am +++ b/alliance/src/attila/doc/attila/Makefile.am @@ -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 diff --git a/alliance/src/attila/doc/builddoc.sh b/alliance/src/attila/doc/builddoc.sh index bf1ede48..f4c651ee 100755 --- a/alliance/src/attila/doc/builddoc.sh +++ b/alliance/src/attila/doc/builddoc.sh @@ -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 diff --git a/alliance/src/nero/doc/builddoc.sh b/alliance/src/nero/doc/builddoc.sh index 3eb29099..9f76a379 100755 --- a/alliance/src/nero/doc/builddoc.sh +++ b/alliance/src/nero/doc/builddoc.sh @@ -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 diff --git a/alliance/src/nero/doc/nero/Makefile.am b/alliance/src/nero/doc/nero/Makefile.am index 0b79e385..11d58e18 100644 --- a/alliance/src/nero/doc/nero/Makefile.am +++ b/alliance/src/nero/doc/nero/Makefile.am @@ -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