[Python-checkins] CVS: python/dist/src/Lib/distutils/command install.py,1.60.6.1,1.60.6.2

Michael Hudson mwh@users.sourceforge.net
Mon, 25 Mar 2002 05:15:30 -0800


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

Modified Files:
      Tag: release22-maint
	install.py 
Log Message:
backport akuchling's checkin of
    revision 1.63 of install.py

Revert part of previous patch: several install_* subcommands expect
    .compile to be None, and set it to true if it is.
    Caught by Pearu Peterson.

Bugfix candidate, if the previous change is accepted for
release22-maint.


Index: install.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/install.py,v
retrieving revision 1.60.6.1
retrieving revision 1.60.6.2
diff -C2 -d -r1.60.6.1 -r1.60.6.2
*** install.py	25 Mar 2002 13:15:04 -0000	1.60.6.1
--- install.py	25 Mar 2002 13:15:28 -0000	1.60.6.2
***************
*** 158,162 ****
          self.install_data = None
  
!         self.compile = 0
          self.optimize = None
  
--- 158,162 ----
          self.install_data = None
  
!         self.compile = None
          self.optimize = None