From f9a598cb29966ae0e8d514b743290d0359ca03b5 Mon Sep 17 00:00:00 2001 From: Thomas Nagy Date: Sat, 1 Oct 2011 08:24:36 +0200 Subject: [PATCH] cosmetic changes --- waflib/Tools/python.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/waflib/Tools/python.py b/waflib/Tools/python.py index 07af7271..6fdffeaa 100644 --- a/waflib/Tools/python.py +++ b/waflib/Tools/python.py @@ -311,8 +311,7 @@ def check_python_headers(conf): # append include path, unless already given if incstr not in includes: includes.append(incstr) - conf.to_log("Include path for Python extensions " - "(found via python-config --includes): %r\n" % (includes,)) + conf.to_log("Include path for Python extensions (found via python-config --includes): %r\n" % (includes,)) env['INCLUDES_PYEXT'] = includes env['INCLUDES_PYEMBED'] = includes else: @@ -346,8 +345,7 @@ def check_python_headers(conf): # python3.2, oh yeah conf.check_cfg(path=conf.env.PYTHON_CONFIG, package='', uselib_store='PYEMBED', args=['--cflags', '--libs']) conf.check(header_name='Python.h', define_name='HAVE_PYTHON_H', msg='Getting the python flags from python-config', - uselib='PYEMBED', fragment=FRAG, - errmsg='Could not find the python development headers elsewhere') + uselib='PYEMBED', fragment=FRAG, errmsg='Could not find the python development headers elsewhere') @conf def check_python_version(conf, minver=None):