diff options
author | Tim Peters <tim.peters@gmail.com> | 2001-07-26 21:34:59 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2001-07-26 21:34:59 (GMT) |
commit | 76f373d081a38ed49d56540298123bd1e0bcd0cd (patch) | |
tree | 4eb4aebc5ee9b541f81d8b63524f3da8b1b977bb /setup.py | |
parent | bd2e3b03d6ada378e63b49f4b858ab41960935ae (diff) | |
download | cpython-76f373d081a38ed49d56540298123bd1e0bcd0cd.zip cpython-76f373d081a38ed49d56540298123bd1e0bcd0cd.tar.gz cpython-76f373d081a38ed49d56540298123bd1e0bcd0cd.tar.bz2 |
Repair more now-obsolete references to config.h.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -84,7 +84,7 @@ class PyBuildExt(build_ext): for ext in self.extensions[:]: ext.sources = [ os.path.join(moddir, filename) for filename in ext.sources ] - ext.include_dirs.append( '.' ) # to get config.h + ext.include_dirs.append( '.' ) # to get pyconfig.h ext.include_dirs.append( os.path.join(srcdir, './Include') ) # If a module has already been built statically, |