diff options
author | Ivo De Decker <ivo.dedecker@ugent.be> | 2013-05-10 13:34:01 +0200 |
---|---|---|
committer | Ivo De Decker <ivo.dedecker@ugent.be> | 2013-05-10 13:34:01 +0200 |
commit | 1230d750f743f04cf199ee165072497f3abcd31f (patch) | |
tree | 491bc9f50143b0129490c1745f0002632ced64a2 /buildtools/wafadmin/Tools/python.py | |
parent | 31202ad025bcdeb2585d18dc3f4641b5cf9c0ec4 (diff) | |
download | samba-1230d750f743f04cf199ee165072497f3abcd31f.tar.gz |
Imported Upstream version 4.0.3+dfsg1upstream/4.0.3+dfsg1
Diffstat (limited to 'buildtools/wafadmin/Tools/python.py')
-rw-r--r-- | buildtools/wafadmin/Tools/python.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/buildtools/wafadmin/Tools/python.py b/buildtools/wafadmin/Tools/python.py index c2af3123f7..a15e1f620f 100644 --- a/buildtools/wafadmin/Tools/python.py +++ b/buildtools/wafadmin/Tools/python.py @@ -259,7 +259,7 @@ MACOSX_DEPLOYMENT_TARGET = %r includes = [] if python_config: - for incstr in Utils.cmd_output("%s %s --includes" % (python, python_config)).strip().split(): + for incstr in Utils.cmd_output("%s --includes" % (python_config,)).strip().split(): # strip the -I or /I if (incstr.startswith('-I') or incstr.startswith('/I')): |