Issue #14152: Restore the Include/*.h dependencies for extension builds.

This commit is contained in:
Stefan Krah 2012-02-29 14:10:53 +01:00
parent 682d37423d
commit eb977dac9c
1 changed files with 1 additions and 1 deletions

View File

@ -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)