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
diff options
context:
space:
mode:
authorNathan Letwory <nathan@letworyinteractive.com>2010-07-05 13:33:17 +0400
committerNathan Letwory <nathan@letworyinteractive.com>2010-07-05 13:33:17 +0400
commit49b13c538552b747795f246feb5243ef78f7c778 (patch)
tree3a807b41a7214b00f57ebcbbb48b6e22d3282c59
parent51e74c26f7ce929ffcae4790ed27e31cf756ec4c (diff)
Brainfart cleanup.
-rw-r--r--tools/Blender.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/Blender.py b/tools/Blender.py
index 9d4dab65770..95d4025fb76 100644
--- a/tools/Blender.py
+++ b/tools/Blender.py
@@ -526,7 +526,7 @@ def AppIt(target=None, source=None, env=None):
cmd = 'mkdir %s/%s.app/Contents/MacOS/%s/'%(builddir, binary, VERSION)
# print cmd
commands.getoutput(cmd)
- cmd = builddir + '/%s.app/Contents/MacOS/VERSION'%(binary,VERSION)
+ cmd = builddir + '/%s.app/Contents/MacOS/%s'%(binary,VERSION)
shutil.copy(bldroot + '/bin/'+VERSION+'/.bfont.ttf', cmd)
shutil.copy(bldroot + '/bin/'+VERSION+'/.Blanguages', cmd)
cmd = 'cp -R %s/bin/%s/locale %s/%s.app/Contents/Resources/'%(bldroot,VERSION,builddir,binary)