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:
authorBastien Montagne <montagne29@wanadoo.fr>2013-05-29 22:59:59 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2013-05-29 22:59:59 +0400
commite9f0b1ad0aeb0c9ae03d3461a10e61fa9a56fd5e (patch)
treec5730928bfa1c451ead763519191ca00fc53446a /source/gameengine/Expressions
parentd4480a0fd8b125888f4cd83c482cb1f79268008c (diff)
Grr, forgot this in r57127...
BF_PYTHON_INC can contain more than one path (in the mono-string format), don't know how this could not be found earlier, completely broke build of GE on any recent Debian/Ubuntu distro???
Diffstat (limited to 'source/gameengine/Expressions')
-rw-r--r--source/gameengine/Expressions/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/gameengine/Expressions/SConscript b/source/gameengine/Expressions/SConscript
index c553aaca2cc..a5231b6ea04 100644
--- a/source/gameengine/Expressions/SConscript
+++ b/source/gameengine/Expressions/SConscript
@@ -41,7 +41,7 @@ incs = [
defs = []
if env['WITH_BF_PYTHON']:
- incs.append(env['BF_PYTHON_INC'])
+ incs += env['BF_PYTHON_INC'].split()
defs.append('WITH_PYTHON')
if env['WITH_BF_CXX_GUARDEDALLOC']: