summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-09-13 00:12:11 (GMT)
committerGreg Ward <gward@python.net>2000-09-13 00:12:11 (GMT)
commitd75a276026cc6b7fd9b72fb65937eab2b5dbc570 (patch)
tree16fbd10c7a52bb8b7ed3d799b8e2dc8ec7e9ce77
parent1ed49eeb296b298a86eb469163828e45b0036feb (diff)
downloadcpython-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.py4
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',