diff options
Diffstat (limited to 'packages/Makefile')
-rw-r--r-- | packages/Makefile | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/packages/Makefile b/packages/Makefile index 59225ac0..8e665c5a 100644 --- a/packages/Makefile +++ b/packages/Makefile @@ -357,12 +357,18 @@ endif #---------------------------------------------------------------------------- # clean up the documentation before packaging doc_format: -# fix perms - -find $(DESTDIR) -name '*.txt' -print0 | xargs -0 chmod a-x - -find $(DESTDIR) -name '*.png' -print0 | xargs -0 chmod a-x +# fix perms in docs and example files + -find $(DESTDIR) -name '*.aiff' -print0 | xargs -0 chmod a-x + -find $(DESTDIR) -name '*.dat' -print0 | xargs -0 chmod a-x -find $(DESTDIR) -name '*.gif' -print0 | xargs -0 chmod a-x - -find $(DESTDIR) -name '*.pdf' -print0 | xargs -0 chmod a-x -find $(DESTDIR) -name '*.html' -print0 | xargs -0 chmod a-x + -find $(DESTDIR) -name '*.mid' -print0 | xargs -0 chmod a-x + -find $(DESTDIR) -name '*.mov' -print0 | xargs -0 chmod a-x + -find $(DESTDIR) -name '*.mp3' -print0 | xargs -0 chmod a-x + -find $(DESTDIR) -name '*.pdf' -print0 | xargs -0 chmod a-x + -find $(DESTDIR) -name '*.png' -print0 | xargs -0 chmod a-x + -find $(DESTDIR) -name '*.txt' -print0 | xargs -0 chmod a-x + -find $(DESTDIR) -name '*.wav' -print0 | xargs -0 chmod a-x # clean out cruft files -find $(DESTDIR) -name .DS_Store -delete -find $(DESTDIR) -name '*.*.bak' -delete |