diff options
author | Stefan Krah <skrah@bytereef.org> | 2012-02-29 13:10:53 (GMT) |
---|---|---|
committer | Stefan Krah <skrah@bytereef.org> | 2012-02-29 13:10:53 (GMT) |
commit | eb977dac9cfd590982d08d1a9f7bae58498648ca (patch) | |
tree | 4b0a1250acbde9e8f0765b1e0411a7ac486f5630 | |
parent | 682d37423dabd4e491457845227ed36d8a370a05 (diff) | |
download | cpython-eb977dac9cfd590982d08d1a9f7bae58498648ca.zip cpython-eb977dac9cfd590982d08d1a9f7bae58498648ca.tar.gz cpython-eb977dac9cfd590982d08d1a9f7bae58498648ca.tar.bz2 |
Issue #14152: Restore the Include/*.h dependencies for extension builds.
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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) |