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_sequencer
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_sequencer')
-rw-r--r--source/blender/editors/space_sequencer/SConscript5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/editors/space_sequencer/SConscript b/source/blender/editors/space_sequencer/SConscript
index 2ea24198d93..7731743aaab 100644
--- a/source/blender/editors/space_sequencer/SConscript
+++ b/source/blender/editors/space_sequencer/SConscript
@@ -6,7 +6,8 @@ sources = env.Glob('*.c')
incs = '../include ../../blenlib ../../blenkernel ../../blenfont ../../makesdna ../../imbuf'
incs += ' ../../windowmanager #/intern/guardedalloc #/extern/glew/include'
incs += ' ../../makesrna'
-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_sequencer', sources, Split(incs), [], libtype=['core'], priority=[100] )