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
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2009-04-02 10:46:56 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-04-02 10:46:56 +0400
commit686b92f7b4ea71556a5cae61e24952bcec906602 (patch)
tree76dd27c0705de69b2553bb6736ae7257811cddc0
parent655177aebdb51bb0572f093bcb25503f1427685a (diff)
[#18477] Prevent .svn directories being included in OS X app bundles
from James Crosby (sheep)
-rw-r--r--source/creator/CMakeLists.txt1
-rw-r--r--source/darwin/Makefile1
2 files changed, 2 insertions, 0 deletions
diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index 8e2a906614d..a20913bc714 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -124,6 +124,7 @@ IF(APPLE)
COMMAND find ${TARGETDIR}/blender.app -name CVS -prune -exec rm -rf {} "\;"
COMMAND find ${TARGETDIR}/blender.app -name CVS.sandboxinfo -prune -exec rm -rf {} "\;"
COMMAND find ${TARGETDIR}/blender.app -name .DS_Store -prune -exec rm -rf {} "\;"
+ COMMAND find ${TARGETDIR}/blender.app -name .svn -prune -exec rm -rf {} "\;"
)
ENDIF(APPLE)
diff --git a/source/darwin/Makefile b/source/darwin/Makefile
index 5ffc4350960..f7b513fc214 100644
--- a/source/darwin/Makefile
+++ b/source/darwin/Makefile
@@ -53,3 +53,4 @@ endif
@echo "---> removing CVS 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 {} \;