[Python-checkins] CVS: distutils/distutils/command bdist_wininst.py,1.11,1.12

Greg Ward python-dev@python.org
Sat, 16 Sep 2000 08:56:35 -0700


Update of /cvsroot/python/distutils/distutils/command
In directory slayer.i.sourceforge.net:/tmp/cvs-serv21250

Modified Files:
	bdist_wininst.py 
Log Message:
Renamed --keep-tree to --keep-temp.

Index: bdist_wininst.py
===================================================================
RCS file: /cvsroot/python/distutils/distutils/command/bdist_wininst.py,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -r1.11 -r1.12
*** bdist_wininst.py	2000/09/09 21:15:12	1.11
--- bdist_wininst.py	2000/09/16 15:56:32	1.12
***************
*** 20,24 ****
      user_options = [('bdist-dir=', 'd',
                       "temporary directory for creating the distribution"),
!                     ('keep-tree', 'k',
                       "keep the pseudo-installation tree around after " +
                       "creating the distribution archive"),
--- 20,24 ----
      user_options = [('bdist-dir=', 'd',
                       "temporary directory for creating the distribution"),
!                     ('keep-temp', 'k',
                       "keep the pseudo-installation tree around after " +
                       "creating the distribution archive"),
***************
*** 36,40 ****
      def initialize_options (self):
          self.bdist_dir = None
!         self.keep_tree = 0
          self.no_target_compile = 0
          self.no_target_optimize = 0
--- 36,40 ----
      def initialize_options (self):
          self.bdist_dir = None
!         self.keep_temp = 0
          self.no_target_compile = 0
          self.no_target_optimize = 0
***************
*** 112,116 ****
          self.create_exe (arcname, fullname)
  
!         if not self.keep_tree:
              remove_tree (self.bdist_dir, self.verbose, self.dry_run)
  
--- 112,116 ----
          self.create_exe (arcname, fullname)
  
!         if not self.keep_temp:
              remove_tree (self.bdist_dir, self.verbose, self.dry_run)