cpython (merge 3.2 -> default): Issue #14152: Merge fix from 3.2.
http://hg.python.org/cpython/rev/c85812b0e97d changeset: 75349:c85812b0e97d parent: 75347:90f459e986c8 parent: 75348:1c77eadba9dc user: Stefan Krah <skrah@bytereef.org> date: Wed Feb 29 14:14:00 2012 +0100 summary: Issue #14152: Merge fix from 3.2. 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 @@ -195,7 +195,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) -- Repository URL: http://hg.python.org/cpython
participants (1)
-
stefan.krah