summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/config.py
diff options
context:
space:
mode:
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)