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:
authorJean-Luc Peurière <jlp@nerim.net>2006-06-28 01:48:54 +0400
committerJean-Luc Peurière <jlp@nerim.net>2006-06-28 01:48:54 +0400
commit88bfc44ca2f348f665b8673491cdccced4bc03ed (patch)
treea763b89df2cba88bdc62223b82246a47fea20192 /tools
parent816ed68db5203bf2e891681739d563bbd98d267b (diff)
some of the .po file had empty msgids and multilline comments from
generator which were making garbage of some sub-menus. generated fresh .mo files added a missing copy in appit for Os X
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 d896775dfb8..a5a0101d486 100644
--- a/tools/Blender.py
+++ b/tools/Blender.py
@@ -309,6 +309,8 @@ def AppIt(target=None, source=None, env=None):
commands.getoutput(cmd)
cmd = 'cp -R %s/bin/.blender/locale %s/%s.app/Contents/MacOS/.blender/'%(bldroot,builddir,binary)
commands.getoutput(cmd)
+ cmd = 'cp %s/bin/.blender/.Blanguages %s/%s.app/Contents/Resources/'%(bldroot,builddir,binary)
+ commands.getoutput(cmd)
cmd = 'cp -R %s/release/scripts %s/%s.app/Contents/MacOS/.blender/'%(bldroot,builddir,binary)
commands.getoutput(cmd)
cmd = 'chmod +x %s/%s.app/Contents/MacOS/%s'%(builddir,binary, binary)