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:
authorJoerg Mueller <nexyon@gmail.com>2010-08-16 23:09:42 +0400
committerJoerg Mueller <nexyon@gmail.com>2010-08-16 23:09:42 +0400
commit1964b2329e1ce5764ddcd2015e143d58d66bed7f (patch)
tree27425ffed395fa1e036c3cacda421e11f563ffb9 /source/blender/makesdna
parent9bb21deec624c7005f475ca7d2fa7c2e3ebf1184 (diff)
Scons:
* Should now build again without problems * Fixed scons having problems to execute makes(d/r)na if build path contains spaces
Diffstat (limited to 'source/blender/makesdna')
-rw-r--r--source/blender/makesdna/intern/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/intern/SConscript b/source/blender/makesdna/intern/SConscript
index 38819ccdf96..116a9c40973 100644
--- a/source/blender/makesdna/intern/SConscript
+++ b/source/blender/makesdna/intern/SConscript
@@ -60,7 +60,7 @@ if env['OURPLATFORM'] != 'linuxcross':
if env['OURPLATFORM'] in ('win32-vc', 'win64-vc', 'win32-mingw'):
dna.Command ('dna.c', '', "\"" + root_build_dir+os.sep+"makesdna\" $TARGET")
else:
- dna.Command ('dna.c', '', root_build_dir+os.sep+"makesdna $TARGET")
+ dna.Command ('dna.c', '', "\"" + root_build_dir+os.sep+"makesdna\" $TARGET")
else:
if USE_WINE:
dna.Command ('dna.c', '', 'wine ' + root_build_dir+os.sep+"makesdna $TARGET")