diff options
author | Greg Ward <gward@python.net> | 2000-09-13 00:12:11 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-09-13 00:12:11 (GMT) |
commit | d75a276026cc6b7fd9b72fb65937eab2b5dbc570 (patch) | |
tree | 16fbd10c7a52bb8b7ed3d799b8e2dc8ec7e9ce77 | |
parent | 1ed49eeb296b298a86eb469163828e45b0036feb (diff) | |
download | cpython-d75a276026cc6b7fd9b72fb65937eab2b5dbc570.zip cpython-d75a276026cc6b7fd9b72fb65937eab2b5dbc570.tar.gz cpython-d75a276026cc6b7fd9b72fb65937eab2b5dbc570.tar.bz2 |
Fix install directories on Mac OS: now everything goes to
<prefix>:Lib:site-packages.
-rw-r--r-- | Lib/distutils/command/install.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/command/install.py b/Lib/distutils/command/install.py index 2a59e16..2cb7871 100644 --- a/Lib/distutils/command/install.py +++ b/Lib/distutils/command/install.py @@ -38,8 +38,8 @@ INSTALL_SCHEMES = { 'data' : '$base', }, 'mac': { - 'purelib': '$base:Lib', - 'platlib': '$base:Mac:PlugIns', + 'purelib': '$base:Lib:site-packages', + 'platlib': '$base:Lib:site-packages', 'headers': '$base:Include:$dist_name', 'scripts': '$base:Scripts', 'data' : '$base', |