[Python-checkins] CVS: python/dist/src/Lib/distutils unixccompiler.py,1.33,1.33.4.1
Tim Peters
tim_one@users.sourceforge.net
2001年7月16日 14:39:43 -0700
- Previous message: [Python-checkins] CVS: python/dist/src/Lib builtin.py,NONE,1.1.2.1 macstat.py,NONE,1.1.2.1 persist.py,NONE,1.6.4.1 __future__.py,1.5.4.1,1.5.4.2 doctest.py,1.10.4.1,1.10.4.2 inspect.py,1.16,1.16.4.1 sgmllib.py,1.30.4.2,1.30.4.3 tokenize.py,1.22.4.1,1.22.4.2 types.py,1.14.10.6,1.14.10.7
- Next message: [Python-checkins] CVS: python/dist/src/Lib/test test_sgmllib.py,NONE,1.1.2.1 test_generators.py,1.17.2.4,1.17.2.5 test_htmlparser.py,1.1.4.1,1.1.4.2 test_support.py,1.21.4.1,1.21.4.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]
Update of /cvsroot/python/python/dist/src/Lib/distutils
In directory usw-pr-cvs1:/tmp/cvs-serv11584/descr/dist/src/Lib/distutils
Modified Files:
Tag: descr-branch
unixccompiler.py
Log Message:
Resuming interrupted merge checkin.
Index: unixccompiler.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/unixccompiler.py,v
retrieving revision 1.33
retrieving revision 1.33.4.1
diff -C2 -r1.33 -r1.33.4.1
*** unixccompiler.py 2001年04月05日 15:46:48 1.33
--- unixccompiler.py 2001年07月16日 21:39:41 1.33.4.1
***************
*** 100,109 ****
pp_args[:0] = extra_preargs
if extra_postargs:
! extra_postargs.extend(extra_postargs)
! # We need to preprocess: either we're being forced to, or the
! # source file is newer than the target (or the target doesn't
# exist).
! if self.force or (output_file and newer(source, output_file)):
if output_file:
self.mkpath(os.path.dirname(output_file))
--- 100,110 ----
pp_args[:0] = extra_preargs
if extra_postargs:
! pp_args.extend(extra_postargs)
! # We need to preprocess: either we're being forced to, or we're
! # generating output to stdout, or there's a target output file and
! # the source file is newer than the target (or the target doesn't
# exist).
! if self.force or output_file is None or newer(source, output_file):
if output_file:
self.mkpath(os.path.dirname(output_file))
- Previous message: [Python-checkins] CVS: python/dist/src/Lib builtin.py,NONE,1.1.2.1 macstat.py,NONE,1.1.2.1 persist.py,NONE,1.6.4.1 __future__.py,1.5.4.1,1.5.4.2 doctest.py,1.10.4.1,1.10.4.2 inspect.py,1.16,1.16.4.1 sgmllib.py,1.30.4.2,1.30.4.3 tokenize.py,1.22.4.1,1.22.4.2 types.py,1.14.10.6,1.14.10.7
- Next message: [Python-checkins] CVS: python/dist/src/Lib/test test_sgmllib.py,NONE,1.1.2.1 test_generators.py,1.17.2.4,1.17.2.5 test_htmlparser.py,1.1.4.1,1.1.4.2 test_support.py,1.21.4.1,1.21.4.2
- Messages sorted by:
[ date ]
[ thread ]
[ subject ]
[ author ]