From 42b629a69b276270ee03a8250781ac73d2668b03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Luc=20Peuri=C3=A8re?= Date: Tue, 14 Aug 2007 20:55:59 +0000 Subject: add the option of not installing to scons build system settting WITHOUT_BF_INSTALL='true' will disable the copying to INSTALL_DIR you can use that in your user-config.py or commandline slipping in minor cleaning for Os X builds --- tools/Blender.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools/Blender.py') diff --git a/tools/Blender.py b/tools/Blender.py index 612ab57737d..601d3c3000d 100644 --- a/tools/Blender.py +++ b/tools/Blender.py @@ -328,7 +328,7 @@ def AppIt(target=None, source=None, env=None): commands.getoutput(cmd) cmd = 'chmod +x %s/%s.app/Contents/MacOS/%s'%(builddir,binary, binary) commands.getoutput(cmd) - cmd = 'find %s/%s.app -name CVS -prune -exec rm -rf {} \;'%(builddir, binary) + cmd = 'find %s/%s.app -name .svn -prune -exec rm -rf {} \;'%(builddir, binary) commands.getoutput(cmd) cmd = 'find %s/%s.app -name .DS_Store -exec rm -rf {} \;'%(builddir, binary) commands.getoutput(cmd) -- cgit v1.2.3