From df112a76a9a8b5971b179bc645016c555d5be725 Mon Sep 17 00:00:00 2001 From: Greg Ward Date: Thu, 29 Jun 2000 02:16:24 +0000 Subject: 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. --- Lib/distutils/command/build_ext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Lib/distutils/command/build_ext.py b/Lib/distutils/command/build_ext.py index 54d4846..9bb7e77 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... -- cgit v0.12