diff options
author | Greg Ward <gward@python.net> | 2000-06-29 02:16:24 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-06-29 02:16:24 (GMT) |
commit | df112a76a9a8b5971b179bc645016c555d5be725 (patch) | |
tree | dbe2ecc1eb61426de13a7a54ba455590e1aa3ac2 /Lib/distutils | |
parent | 499822d95975a4b59f902443596d1207c8f274b9 (diff) | |
download | cpython-df112a76a9a8b5971b179bc645016c555d5be725.zip cpython-df112a76a9a8b5971b179bc645016c555d5be725.tar.gz cpython-df112a76a9a8b5971b179bc645016c555d5be725.tar.bz2 |
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.
Diffstat (limited to 'Lib/distutils')
-rw-r--r-- | Lib/distutils/command/build_ext.py | 2 |
1 files changed, 1 insertions, 1 deletions
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... |