[Python-checkins] CVS: distutils/distutils/command build_ext.py,1.52,1.53
Greg Ward
python-dev@python.org
2000年6月28日 19:16:26 -0700
Update of /cvsroot/python/distutils/distutils/command
In directory slayer.i.sourceforge.net:/tmp/cvs-serv18102
Modified Files:
build_ext.py
Log Message:
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.
Index: build_ext.py
===================================================================
RCS file: /cvsroot/python/distutils/distutils/command/build_ext.py,v
retrieving revision 1.52
retrieving revision 1.53
diff -C2 -r1.52 -r1.53
*** build_ext.py 2000年06月28日 14:48:01 1.52
--- build_ext.py 2000年06月29日 02:16:24 1.53
***************
*** 310,314 ****
def get_source_files (self):
!
filenames = []
--- 310,314 ----
def get_source_files (self):
! self.check_extension_list()
filenames = []