[Python-checkins] CVS: python/dist/src/Lib/distutils/command build_scripts.py,1.7,1.8

Fred L. Drake fdrake@users.sourceforge.net
Thu, 01 Mar 2001 23:28:05 -0800


Update of /cvsroot/python/python/dist/src/Lib/distutils/command
In directory usw-pr-cvs1:/tmp/cvs-serv20973

Modified Files:
	build_scripts.py 
Log Message:

When not copying a file because the output is up to date, make the message
slightly more brief, and more like the message that an extension will not
be built because the built copy is up to date.


Index: build_scripts.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/build_scripts.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** build_scripts.py	2001/02/28 20:59:33	1.7
--- build_scripts.py	2001/03/02 07:28:03	1.8
***************
*** 46,50 ****
          self.copy_scripts()
  
!         
      def copy_scripts (self):
          """Copy each script listed in 'self.scripts'; if it's marked as a
--- 46,50 ----
          self.copy_scripts()
  
! 
      def copy_scripts (self):
          """Copy each script listed in 'self.scripts'; if it's marked as a
***************
*** 60,64 ****
  
              if not self.force and not newer(script, outfile):
!                 self.announce("not copying %s (output up-to-date)" % script)
                  continue
  
--- 60,64 ----
  
              if not self.force and not newer(script, outfile):
!                 self.announce("not copying %s (up-to-date)" % script)
                  continue