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:
authorAntony Riakiotakis <kalast@gmail.com>2013-01-22 18:14:30 +0400
committerAntony Riakiotakis <kalast@gmail.com>2013-01-22 18:14:30 +0400
commit598d84efedbea06dc28a95dd7fe58c1d3577a41d (patch)
tree64bca3715060debb7517db5eb4d78554fe446c3d /SConstruct
parent24f858016a0099ae916c48d7d4b39abb3fe10063 (diff)
ubuntu 12.10 does not have pyconfig.h in include directory causing scons to fail. Omitting since it looks like cmake only uses Python.h too
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct8
1 files changed, 3 insertions, 5 deletions
diff --git a/SConstruct b/SConstruct
index b7665d14228..e4cbb9cd470 100644
--- a/SConstruct
+++ b/SConstruct
@@ -438,17 +438,15 @@ if not quickie and do_clean:
# with _any_ library but since we used a fixed python version this tends to
# be most problematic.
if env['WITH_BF_PYTHON']:
- found_python_h = found_pyconfig_h = False
+ found_python_h = False
for bf_python_inc in env.subst('${BF_PYTHON_INC}').split():
py_h = os.path.join(Dir(bf_python_inc).abspath, "Python.h")
if os.path.exists(py_h):
found_python_h = True
py_h = os.path.join(Dir(bf_python_inc).abspath, "pyconfig.h")
- if os.path.exists(py_h):
- found_pyconfig_h = True
- if not (found_python_h and found_pyconfig_h):
- print("""\nMissing: Python.h and/or pyconfig.h in "%s"
+ if not (found_python_h):
+ print("""\nMissing: Python.h in "%s"
Set 'BF_PYTHON_INC' to point to valid include path(s),
containing Python.h and pyconfig.h for Python version "%s".