[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


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))

AltStyle によって変換されたページ (->オリジナル) /