From c04631f0bb716583e4678add34d09ac3494515ea Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Fri, 28 Dec 2012 12:12:04 +0000 Subject: [PATCH] patch [#33669] SConstruct: Tell how to pass BF_PYTHON_INC to SCons is it is not found from anatoly techtonik (techtonik) --- SConstruct | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/SConstruct b/SConstruct index 4630b7b8c87..f73aabc6767 100644 --- a/SConstruct +++ b/SConstruct @@ -442,11 +442,12 @@ if env['WITH_BF_PYTHON']: found_pyconfig_h = True if not (found_python_h and found_pyconfig_h): - print("\nMissing: Python.h and/or pyconfig.h in\"" + env.subst('${BF_PYTHON_INC}') + "\",\n" - " Set 'BF_PYTHON_INC' to point " - "to valid python include path(s).\n Containing " - "Python.h and pyconfig.h for python version \"" + env.subst('${BF_PYTHON_VERSION}') + "\"") + print("""\nMissing: Python.h and/or pyconfig.h in "%s" + Set 'BF_PYTHON_INC' to point to valid include path(s), + containing Python.h and pyconfig.h for Python version "%s". + Example: python scons/scons.py BF_PYTHON_INC=../Python/include + """ % (env.subst('${BF_PYTHON_INC}'), env.subst('${BF_PYTHON_VERSION}'))) Exit()