summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-06-29 02:16:24 (GMT)
committerGreg Ward <gward@python.net>2000-06-29 02:16:24 (GMT)
commitdf112a76a9a8b5971b179bc645016c555d5be725 (patch)
treedbe2ecc1eb61426de13a7a54ba455590e1aa3ac2 /Lib
parent499822d95975a4b59f902443596d1207c8f274b9 (diff)
downloadcpython-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')
-rw-r--r--Lib/distutils/command/build_ext.py2
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...