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:
authorCampbell Barton <ideasman42@gmail.com>2013-05-30 01:56:55 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-05-30 01:56:55 +0400
commit9cf6e305a90581442d374860d3e4f278624d033c (patch)
tree9d002ad5a5c4e7641c79c10c2e40dcd39aa72db9 /source/gameengine/Expressions
parent65baf6ca5c92d7e12cedafef7a37b87d3bb37e94 (diff)
split bge includes for scons onto their own lines (for easier merging)
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 a5231b6ea04..48102e5ba3c 100644
--- a/source/gameengine/Expressions/SConscript
+++ b/source/gameengine/Expressions/SConscript
@@ -41,7 +41,7 @@ incs = [
defs = []
if env['WITH_BF_PYTHON']:
- incs += env['BF_PYTHON_INC'].split()
+ incs.extend(Split(env['BF_PYTHON_INC']))
defs.append('WITH_PYTHON')
if env['WITH_BF_CXX_GUARDEDALLOC']: