diff options
| author | Greg Ward <gward@python.net> | 2000-06-29 02:16:24 +0000 |
|---|---|---|
| committer | Greg Ward <gward@python.net> | 2000-06-29 02:16:24 +0000 |
| commit | 0350ebe9b29608aada89136c1db880c4f3552330 (patch) | |
| tree | aaf73bbc4214da027ea97b631862d42fa040c459 | |
| parent | 78d7f6ae8b4d39977f5bc4efc043a136d80e9c96 (diff) | |
| download | python-setuptools-git-0350ebe9b29608aada89136c1db880c4f3552330.tar.gz | |
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.
| -rw-r--r-- | command/build_ext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/command/build_ext.py b/command/build_ext.py index 54d48467..9bb7e770 100644 --- a/command/build_ext.py +++ b/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... |
