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/tools
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2009-04-17 01:51:20 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2009-04-17 01:51:20 +0400
commitcd83474960b86c2c99c370b6a4982f54889c24ee (patch)
tree444ed4d6c1e38760b8513bd87c42a936f6836fb0 /tools
parent38b6f8f167662db35e8b51e8d9b2ecb13800982a (diff)
2.5 / SCons
* ui layout scripts were not copied to bundle on OSX patch by Stephan Kassemeyer on ML
Diffstat (limited to 'tools')
-rw-r--r--tools/Blender.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/Blender.py b/tools/Blender.py
index 8286a3a4714..d24a7c4c2cb 100644
--- a/tools/Blender.py
+++ b/tools/Blender.py
@@ -353,6 +353,8 @@ def AppIt(target=None, source=None, env=None):
commands.getoutput(cmd)
cmd = 'cp -R %s/release/scripts %s/%s.app/Contents/MacOS/.blender/'%(bldroot,builddir,binary)
commands.getoutput(cmd)
+ cmd = 'cp -R %s/release/ui %s/%s.app/Contents/MacOS/.blender/'%(bldroot,builddir,binary)
+ commands.getoutput(cmd)
cmd = 'chmod +x %s/%s.app/Contents/MacOS/%s'%(builddir,binary, binary)
commands.getoutput(cmd)
cmd = 'find %s/%s.app -name .svn -prune -exec rm -rf {} \;'%(builddir, binary)