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:
authorMatt Ebb <matt@mke3.net>2009-07-28 14:57:36 +0400
committerMatt Ebb <matt@mke3.net>2009-07-28 14:57:36 +0400
commitfee10e5a400762a556db7167f8a1e55ed1dfd1ff (patch)
tree00bc999d68303a25f5b16e0dc17d9c404ceaec75 /tools
parentb2ceadc3595eb379ec62bd1f900134084cd6062c (diff)
* copy io scripts into osx bundle with scons, in post-build process
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 73ee6bb813d..6bb77e3cc85 100644
--- a/tools/Blender.py
+++ b/tools/Blender.py
@@ -364,6 +364,8 @@ def AppIt(target=None, source=None, env=None):
commands.getoutput(cmd)
cmd = 'cp -R %s/release/ui %s/%s.app/Contents/MacOS/.blender/'%(bldroot,builddir,binary)
commands.getoutput(cmd)
+ cmd = 'cp -R %s/release/io %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)