]> granicus.if.org Git - python/commitdiff
Fix how we set 'build_dir' and 'install_dir' options from 'install' options --
authorGreg Ward <gward@python.net>
Wed, 22 Mar 2000 00:12:51 +0000 (00:12 +0000)
committerGreg Ward <gward@python.net>
Wed, 22 Mar 2000 00:12:51 +0000 (00:12 +0000)
irrelevant because this file is about to go away, but oh well.

Lib/distutils/command/install_ext.py

index 8d23fa4cde6efbb8a6afbeca4d6aa7ec68b0a348..14730909bbe8ff43a54d1bf35873db3c96e732a6 100644 (file)
@@ -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):