[Python-checkins] CVS: distutils/distutils/command install.py,1.37,1.38

Greg Ward python-dev@python.org
Tue, 20 Jun 2000 20:09:05 -0700


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

Modified Files:
	install.py 
Log Message:
Rene Liebscher: when fixing up directories with an alternate root, include
'install_headers'.

Index: install.py
===================================================================
RCS file: /cvsroot/python/distutils/distutils/command/install.py,v
retrieving revision 1.37
retrieving revision 1.38
diff -C2 -r1.37 -r1.38
*** install.py	2000/06/17 01:34:45	1.37
--- install.py	2000/06/21 03:09:02	1.38
***************
*** 273,277 ****
          # dirs relative to it.
          if self.root is not None:
!             for name in ('lib', 'purelib', 'platlib', 'scripts', 'data'):
                  attr = "install_" + name
                  new_val = change_root (self.root, getattr (self, attr))
--- 273,278 ----
          # dirs relative to it.
          if self.root is not None:
!             for name in ('lib', 'purelib', 'platlib',
!                          'scripts', 'data', 'headers'):
                  attr = "install_" + name
                  new_val = change_root (self.root, getattr (self, attr))