summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefan Krah <skrah@bytereef.org>2012-02-29 13:10:53 (GMT)
committerStefan Krah <skrah@bytereef.org>2012-02-29 13:10:53 (GMT)
commiteb977dac9cfd590982d08d1a9f7bae58498648ca (patch)
tree4b0a1250acbde9e8f0765b1e0411a7ac486f5630
parent682d37423dabd4e491457845227ed36d8a370a05 (diff)
downloadcpython-eb977dac9cfd590982d08d1a9f7bae58498648ca.zip
cpython-eb977dac9cfd590982d08d1a9f7bae58498648ca.tar.gz
cpython-eb977dac9cfd590982d08d1a9f7bae58498648ca.tar.bz2
Issue #14152: Restore the Include/*.h dependencies for extension builds.
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index 1318bc2..d69875c 100644
--- a/setup.py
+++ b/setup.py
@@ -197,7 +197,7 @@ class PyBuildExt(build_ext):
# 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)