Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorTon Roosendaal <ton@blender.org>2009-04-23 13:59:19 +0400
committerTon Roosendaal <ton@blender.org>2009-04-23 13:59:19 +0400
commit09c341c3bdc28dd4f62b31158ab891a5bcc6004d (patch)
treeae771f5a7873dbc27c1d33867c3ec07897c0bc3b /source
parent960581fcc9b0ce937753bed6e6f41209b2359b14 (diff)
Make: removing hidden directories from .app failed.
Diffstat (limited to 'source')
-rw-r--r--source/darwin/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/darwin/Makefile b/source/darwin/Makefile
index f7b513fc214..e2c6f754831 100644
--- a/source/darwin/Makefile
+++ b/source/darwin/Makefile
@@ -50,7 +50,7 @@ ifeq ($(APPLICATION), blender)
@cp -R $(NANBLENDERHOME)/bin/.blender $(DIR)/bin/$(APPLICATION).app/Contents/MacOS
@cp -R $(NANBLENDERHOME)/release/scripts $(DIR)/bin/$(APPLICATION).app/Contents/MacOS/.blender/
endif
- @echo "---> removing CVS directories and Mac hidden files from distribution"
+ @echo "---> removing SVN directories and Mac hidden files from distribution"
@find $(DIR)/bin/$(APPLICATION).app -name CVS -prune -exec rm -rf {} \;
@find $(DIR)/bin/$(APPLICATION).app -name .DS_Store -exec rm -f {} \;
- @find $(DIR)/bin/$(APPLICATION).app -name .svn -exec rm -rf {} \;
+ @find $(DIR)/bin/$(APPLICATION).app -name .svn -prune -exec rm -rf {} \;