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/editors/space_graph/SConscript
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/editors/space_graph/SConscript')
-rw-r--r--source/blender/editors/space_graph/SConscript5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/editors/space_graph/SConscript b/source/blender/editors/space_graph/SConscript
index 69e01740c05..438a70f4ba5 100644
--- a/source/blender/editors/space_graph/SConscript
+++ b/source/blender/editors/space_graph/SConscript
@@ -5,7 +5,8 @@ sources = env.Glob('*.c')
incs = '../include ../../blenlib ../../blenkernel ../../makesdna ../../makesrna ../../imbuf'
incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include'
-incs += ' #/intern/audaspace/intern '
-incs += env['BF_PYTHON_INC']
+incs += ' #/intern/audaspace/intern'
+if env['WITH_BF_PYTHON']:
+ incs += ' ' + env['BF_PYTHON_INC']
env.BlenderLib ( 'bf_editors_space_graph', sources, Split(incs), [], libtype=['core'], priority=[50] )