diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2001-07-26 13:41:06 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2001-07-26 13:41:06 (GMT) |
commit | 4f1cd8bdcbd20bb0acdbe9e240f28c09dd38370f (patch) | |
tree | 06e19685ad77879ee4df995bf669235489786995 /Lib/distutils/command | |
parent | 4eb5940a4d350d250ab4af08a8b5b6e553e1814d (diff) | |
download | cpython-4f1cd8bdcbd20bb0acdbe9e240f28c09dd38370f.zip cpython-4f1cd8bdcbd20bb0acdbe9e240f28c09dd38370f.tar.gz cpython-4f1cd8bdcbd20bb0acdbe9e240f28c09dd38370f.tar.bz2 |
Patch #411138: Rename config.h to pyconfig.h. Closes bug #231774.
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r-- | Lib/distutils/command/build_ext.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py index f732373..259a844 100644 --- a/Lib/distutils/command/build_ext.py +++ b/Lib/distutils/command/build_ext.py @@ -125,7 +125,7 @@ class build_ext (Command): self.extensions = self.distribution.ext_modules - # Make sure Python's include directories (for Python.h, config.h, + # Make sure Python's include directories (for Python.h, pyconfig.h, # etc.) are in the include search path. py_include = sysconfig.get_python_inc() plat_py_include = sysconfig.get_python_inc(plat_specific=1) @@ -592,7 +592,7 @@ class build_ext (Command): """ # The python library is always needed on Windows. For MSVC, this # is redundant, since the library is mentioned in a pragma in - # config.h that MSVC groks. The other Windows compilers all seem + # pyconfig.h that MSVC groks. The other Windows compilers all seem # to need it mentioned explicitly, though, so that's what we do. # Append '_d' to the python import library on debug builds. from distutils.msvccompiler import MSVCCompiler |