Changeset 391 for python/trunk/Lib/distutils/command/install.py
- Timestamp:
- Mar 19, 2014, 11:31:01 PM (11 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk
-
Property svn:mergeinfo
set to
/python/vendor/Python-2.7.6 merged eligible /python/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
python/trunk/Lib/distutils/command/install.py
r10 r391 7 7 # This module should be kept compatible with Python 2.1. 8 8 9 __revision__ = "$Id : install.py 62788 2008-05-06 22:41:46Z christian.heimes$"9 __revision__ = "$Id$" 10 10 11 11 import sys, os, string … … 70 70 'data' : '$userbase', 71 71 }, 72 'mac': {73 'purelib': '$base/Lib/site-packages',74 'platlib': '$base/Lib/site-packages',75 'headers': '$base/Include/$dist_name',76 'scripts': '$base/Scripts',77 'data' : '$base',78 },79 'mac_user': {80 'purelib': '$usersite',81 'platlib': '$usersite',82 'headers': '$userbase/$py_version_short/include/$dist_name',83 'scripts': '$userbase/bin',84 'data' : '$userbase',85 },86 72 'os2': { 87 73 'purelib': '$base/Lib/site-packages', … … 280 266 if self.user and (self.prefix or self.exec_prefix or self.home or 281 267 self.install_base or self.install_platbase): 282 raise DistutilsOptionError("can't combine user with with prefix/"283 "exec_prefix/home or install_(plat)base")268 raise DistutilsOptionError("can't combine user with prefix, " 269 "exec_prefix/home, or install_(plat)base") 284 270 285 271 # Next, stuff that's wrong (or dubious) only on certain platforms.
Note:
See TracChangeset
for help on using the changeset viewer.