cpython (2.7): Issue #14152: backport fix.
http://hg.python.org/cpython/rev/3e2c230f4664 changeset: 75350:3e2c230f4664 branch: 2.7 parent: 75345:8e00de3acb44 user: Stefan Krah <skrah@bytereef.org> date: Wed Feb 29 14:17:18 2012 +0100 summary: Issue #14152: backport fix. files: setup.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -186,7 +186,7 @@ # Python header files headers = [sysconfig.get_config_h_filename()] - headers += glob(os.path.join(sysconfig.get_path('platinclude'), "*.h")) + headers += glob(os.path.join(sysconfig.get_path('include'), "*.h")) for ext in self.extensions[:]: ext.sources = [ find_module_file(filename, moddirlist) for filename in ext.sources ] -- Repository URL: http://hg.python.org/cpython
participants (1)
-
stefan.krah