aboutsummaryrefslogtreecommitdiff
path: root/packages
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2012-10-17 15:25:41 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2012-10-17 15:25:41 +0000
commitebbbbf85c289c0e399c654918592c874b827b24a (patch)
tree51d2a2151f54b0e85535259677d2ab462cac1b14 /packages
parent8c27b29d1f026532609d95a390e90934d35bbc9e (diff)
remove exec perms from all file types used in docs and examples
svn path=/trunk/; revision=16420
Diffstat (limited to 'packages')
-rw-r--r--packages/Makefile14
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