summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/config.py
diff options
context:
space:
mode:
authorTarek Ziadé <ziade.tarek@gmail.com>2009-04-12 16:34:34 (GMT)
committerTarek Ziadé <ziade.tarek@gmail.com>2009-04-12 16:34:34 (GMT)
commitfd39b7aa6ea9b9f56cd438a9262bf6e822d0161c (patch)
tree6e75ff9e3d3eedb34334d26ec288c2fe1224eff3 /Lib/distutils/command/config.py
parentabc387747dc573e05a4b31387797a0272062b2ef (diff)
downloadcpython-fd39b7aa6ea9b9f56cd438a9262bf6e822d0161c.zip
cpython-fd39b7aa6ea9b9f56cd438a9262bf6e822d0161c.tar.gz
cpython-fd39b7aa6ea9b9f56cd438a9262bf6e822d0161c.tar.bz2
Merged revisions 71523 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk ........ r71523 | tarek.ziade | 2009-04-12 18:31:24 +0200 (Sun, 12 Apr 2009) | 1 line added a simple test for search_cpp ........
Diffstat (limited to 'Lib/distutils/command/config.py')
-rw-r--r--Lib/distutils/command/config.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/distutils/command/config.py b/Lib/distutils/command/config.py
index 385a47a..c312205 100644
--- a/Lib/distutils/command/config.py
+++ b/Lib/distutils/command/config.py
@@ -198,9 +198,8 @@ class config(Command):
preprocesses an empty file -- which can be useful to determine the
symbols the preprocessor and compiler set by default.
"""
-
self._check_compiler()
- (src, out) = self._preprocess(body, headers, include_dirs, lang)
+ src, out = self._preprocess(body, headers, include_dirs, lang)
if isinstance(pattern, str):
pattern = re.compile(pattern)