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.
This commit is contained in:
Greg Ward 2000-06-29 02:16:24 +00:00
parent 499822d959
commit df112a76a9
1 changed files with 1 additions and 1 deletions

View File

@ -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...