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>2012-11-12 22:31:15 +0400
committerBastien Montagne <montagne29@wanadoo.fr>2012-11-12 22:31:15 +0400
commite811a2d0ffe1e15190dd210d13ef3b50afc37d90 (patch)
treee6f19277d788c83f1014faa943b0494094a3ea9f /intern/cycles
parentf0caab41b22744c97352a7f710f7dde4c163194f (diff)
Fix to allow several include dirs for python under scons build system (needed with new py3.3 debian-like packages).
Diffstat (limited to 'intern/cycles')
-rw-r--r--intern/cycles/SConscript2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/SConscript b/intern/cycles/SConscript
index c0e0353d37d..c7d7720e0fe 100644
--- a/intern/cycles/SConscript
+++ b/intern/cycles/SConscript
@@ -32,7 +32,7 @@ incs.extend('#source/blender/blenloader ../../source/blender/makesrna/intern'.sp
incs.extend('#extern/glew/include #intern/mikktspace'.split())
incs.append(cycles['BF_OIIO_INC'])
incs.append(cycles['BF_BOOST_INC'])
-incs.append(cycles['BF_PYTHON_INC'])
+incs.extend(cycles['BF_PYTHON_INC'].split())
if env['OURPLATFORM'] in ('win32-vc', 'win64-vc'):
cxxflags.append('-D_CRT_SECURE_NO_WARNINGS /fp:fast /EHsc'.split())