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>2010-07-05 14:32:14 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2010-07-05 14:32:14 +0400
commit462d889720a5562fa01040f4d2a70269904edd77 (patch)
treecdeb523b75bd5d14f5f4b3b2dc451d6fb0b879da /tools
parentc9f667a92e492636ee6989c9cefda3c6caafc843 (diff)
another fix for osx scons
Diffstat (limited to 'tools')
-rw-r--r--tools/Blender.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/Blender.py b/tools/Blender.py
index 95d4025fb76..1195b00b39d 100644
--- a/tools/Blender.py
+++ b/tools/Blender.py
@@ -527,8 +527,8 @@ def AppIt(target=None, source=None, env=None):
# print cmd
commands.getoutput(cmd)
cmd = builddir + '/%s.app/Contents/MacOS/%s'%(binary,VERSION)
- shutil.copy(bldroot + '/bin/'+VERSION+'/.bfont.ttf', cmd)
- shutil.copy(bldroot + '/bin/'+VERSION+'/.Blanguages', cmd)
+ shutil.copy(bldroot + '/bin/.blender/.bfont.ttf', cmd)
+ shutil.copy(bldroot + '/bin/.blender/.Blanguages', cmd)
cmd = 'cp -R %s/bin/%s/locale %s/%s.app/Contents/Resources/'%(bldroot,VERSION,builddir,binary)
commands.getoutput(cmd)
cmd = 'cp -R %s/bin/%s/locale %s/%s.app/Contents/MacOS/%s/'%(bldroot,VERSION,builddir,binary,VERSION)