diff options
author | Greg Ward <gward@python.net> | 2000-02-26 00:49:04 (GMT) |
---|---|---|
committer | Greg Ward <gward@python.net> | 2000-02-26 00:49:04 (GMT) |
commit | 4f08e4facbb44b64fb1388baaa9a00c9690f8c5b (patch) | |
tree | 61069a510784149b772e693337c2594b3defaeb7 /Lib/distutils/command/install_ext.py | |
parent | b6f6e95ed25f1aa9d8220b96bdf8445b695df7f2 (diff) | |
download | cpython-4f08e4facbb44b64fb1388baaa9a00c9690f8c5b.zip cpython-4f08e4facbb44b64fb1388baaa9a00c9690f8c5b.tar.gz cpython-4f08e4facbb44b64fb1388baaa9a00c9690f8c5b.tar.bz2 |
Unfinished, untested implementation of the lovely baroque installation scheme
cooked up by Fred Drake and me. Only saved for posterity (whoever posterity
is), as it is about to be ditched in favour of GvR's much simpler design.
Diffstat (limited to 'Lib/distutils/command/install_ext.py')
-rw-r--r-- | Lib/distutils/command/install_ext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/distutils/command/install_ext.py b/Lib/distutils/command/install_ext.py index b046dfb..f1a3e24 100644 --- a/Lib/distutils/command/install_ext.py +++ b/Lib/distutils/command/install_ext.py @@ -26,7 +26,7 @@ class install_ext (Command): def finalize_options (self): self.set_undefined_options ('install', ('build_platlib', 'build_dir'), - ('install_site_platlib', 'install_dir')) + ('install_platlib', 'install_dir')) def run (self): |