From: Greg Ward Date: Thu, 29 Jun 2000 02:16:24 +0000 (+0000) Subject: Fixed so 'get_source_files()' calls 'check_extension_list()' -- that way, X-Git-Tag: v2.0b1~1319 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=df112a76a9a8b5971b179bc645016c555d5be725;p=python Fixed so 'get_source_files()' calls 'check_extension_list()' -- that way, we can run "sdist" on a distribution with old-style extension structures even if we haven't built it yet. Bug spotted by Harry Gebel. --- diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py index 54d48467bc..9bb7e77001 100644 --- a/Lib/distutils/command/build_ext.py +++ b/Lib/distutils/command/build_ext.py @@ -309,7 +309,7 @@ class build_ext (Command): def get_source_files (self): - + self.check_extension_list() filenames = [] # Wouldn't it be neat if we knew the names of header files too...