diff options
Diffstat (limited to 'Lib/distutils/command/config.py')
-rw-r--r-- | Lib/distutils/command/config.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Lib/distutils/command/config.py b/Lib/distutils/command/config.py index 385a47a726..c31220553c 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) |