summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorGreg Ward <gward@python.net>2000-03-22 00:12:51 (GMT)
committerGreg Ward <gward@python.net>2000-03-22 00:12:51 (GMT)
commit531349f28e6c87ca6ccfa3abd161ea259f10e32a (patch)
tree4ab674da8ed39ea1a17c0d03f9ca35003c612dd1 /Lib
parent4620f306a4d46ca6e455247cfa5c900765d4b9d1 (diff)
downloadcpython-531349f28e6c87ca6ccfa3abd161ea259f10e32a.zip
cpython-531349f28e6c87ca6ccfa3abd161ea259f10e32a.tar.gz
cpython-531349f28e6c87ca6ccfa3abd161ea259f10e32a.tar.bz2
Fix how we set 'build_dir' and 'install_dir' options from 'install' options --
irrelevant because this file is about to go away, but oh well.
Diffstat (limited to 'Lib')
-rw-r--r--Lib/distutils/command/install_ext.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/distutils/command/install_ext.py b/Lib/distutils/command/install_ext.py
index 8d23fa4..1473090 100644
--- a/Lib/distutils/command/install_ext.py
+++ b/Lib/distutils/command/install_ext.py
@@ -25,8 +25,8 @@ class install_ext (Command):
def finalize_options (self):
self.set_undefined_options ('install',
- ('build_platlib', 'build_dir'),
- ('install_platlib', 'install_dir'))
+ ('build_lib', 'build_dir'),
+ ('install_lib', 'install_dir'))
def run (self):