From 686b92f7b4ea71556a5cae61e24952bcec906602 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Thu, 2 Apr 2009 06:46:56 +0000 Subject: [#18477] Prevent .svn directories being included in OS X app bundles from James Crosby (sheep) --- source/creator/CMakeLists.txt | 1 + source/darwin/Makefile | 1 + 2 files changed, 2 insertions(+) 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 {} \; -- cgit v1.2.3