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

Greg Ward python-dev@python.org
Sat, 24 Jun 2000 10:22:42 -0700


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

Modified Files:
	install.py 
Log Message:
Changed the default installation directory for data files (used by
the "install_data" command to the installation base, which is usually just
sys.prefix.  (Any setup scripts out there that specify data files will have
to set the installation directory, relative to the base, explicitly.)

Index: install.py
===================================================================
RCS file: /cvsroot/python/distutils/distutils/command/install.py,v
retrieving revision 1.38
retrieving revision 1.39
diff -C2 -r1.38 -r1.39
*** install.py	2000/06/21 03:09:02	1.38
--- install.py	2000/06/24 17:22:39	1.39
***************
*** 21,25 ****
          'headers': '$base/include/python$py_version_short/$dist_name',
          'scripts': '$base/bin',
!         'data'   : '$base/share',
          },
      'unix_home': {
--- 21,25 ----
          'headers': '$base/include/python$py_version_short/$dist_name',
          'scripts': '$base/bin',
!         'data'   : '$base',
          },
      'unix_home': {
***************
*** 28,32 ****
          'headers': '$base/include/python/$dist_name',
          'scripts': '$base/bin',
!         'data'   : '$base/share',
          },
      'nt': {
--- 28,32 ----
          'headers': '$base/include/python/$dist_name',
          'scripts': '$base/bin',
!         'data'   : '$base',
          },
      'nt': {
***************
*** 35,39 ****
          'headers': '$base\\Include\\$dist_name',
          'scripts': '$base\\Scripts',
!         'data'   : '$base\\Data',
          },
      'mac': {
--- 35,39 ----
          'headers': '$base\\Include\\$dist_name',
          'scripts': '$base\\Scripts',
!         'data'   : '$base',
          },
      'mac': {
***************
*** 42,46 ****
          'headers': '$base:Include:$dist_name',
          'scripts': '$base:Scripts',
!         'data'   : '$base:Data',
          }
      }
--- 42,46 ----
          'headers': '$base:Include:$dist_name',
          'scripts': '$base:Scripts',
!         'data'   : '$base',
          }
      }