summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-06-29 02:16:24 +0000
committerGreg Ward <gward@python.net>2000-06-29 02:16:24 +0000
commit0350ebe9b29608aada89136c1db880c4f3552330 (patch)
treeaaf73bbc4214da027ea97b631862d42fa040c459
parent78d7f6ae8b4d39977f5bc4efc043a136d80e9c96 (diff)
downloadpython-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.py2
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...