diff options
author | Éric Araujo <merwok@netwok.org> | 2010-11-06 06:00:54 (GMT) |
---|---|---|
committer | Éric Araujo <merwok@netwok.org> | 2010-11-06 06:00:54 (GMT) |
commit | 45ee43be43dce8b81d338ed577a65f21da657b7d (patch) | |
tree | 57c21bc5face310b558b590906e1929035c3fe14 /Lib/distutils/command | |
parent | 2642ad07ee616c3374feee47354d1eba735b07eb (diff) | |
download | cpython-45ee43be43dce8b81d338ed577a65f21da657b7d.zip cpython-45ee43be43dce8b81d338ed577a65f21da657b7d.tar.gz cpython-45ee43be43dce8b81d338ed577a65f21da657b7d.tar.bz2 |
Remove traces of Mac OS 9 support, again (#9508).
This was done in r80805 (#7908) and erroneously brought back by the
distutils revert. This commit removes more code than the original,
which was uncomplete. There is no NEWS entry, like in r80805.
Diffstat (limited to 'Lib/distutils/command')
-rw-r--r-- | Lib/distutils/command/install.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py index 2a905d9..58f6ec5 100644 --- a/Lib/distutils/command/install.py +++ b/Lib/distutils/command/install.py @@ -60,14 +60,6 @@ INSTALL_SCHEMES = { 'data' : '$base', }, 'nt': WINDOWS_SCHEME, - 'mac': { - 'purelib': '$base/Lib/site-packages', - 'platlib': '$base/Lib/site-packages', - 'headers': '$base/Include/$dist_name', - 'scripts': '$base/Scripts', - 'data' : '$base', - }, - 'os2': { 'purelib': '$base/Lib/site-packages', 'platlib': '$base/Lib/site-packages', @@ -95,14 +87,6 @@ if HAS_USER_SITE: 'data' : '$userbase', } - INSTALL_SCHEMES['mac_user'] = { - 'purelib': '$usersite', - 'platlib': '$usersite', - 'headers': '$userbase/$py_version_short/include/$dist_name', - 'scripts': '$userbase/bin', - 'data' : '$userbase', - } - INSTALL_SCHEMES['os2_home'] = { 'purelib': '$usersite', 'platlib': '$usersite', |