diff options
author | Travis Oliphant <oliphant@enthought.com> | 2005-09-14 22:12:33 +0000 |
---|---|---|
committer | Travis Oliphant <oliphant@enthought.com> | 2005-09-14 22:12:33 +0000 |
commit | 575d373479c63a42bc4a729a058da31a74e75d3e (patch) | |
tree | 940a3020e83dd06c2241d8f45bd4969850694803 /distutils/command/install.py | |
parent | 14db4193112ecc5930154af860228562132e3b48 (diff) | |
download | numpy-575d373479c63a42bc4a729a058da31a74e75d3e.tar.gz |
Added new distutils
Diffstat (limited to 'distutils/command/install.py')
-rw-r--r-- | distutils/command/install.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/distutils/command/install.py b/distutils/command/install.py new file mode 100644 index 000000000..64d613569 --- /dev/null +++ b/distutils/command/install.py @@ -0,0 +1,9 @@ + +from distutils.command.install import * +from distutils.command.install import install as old_install + +class install(old_install): + + def finalize_options (self): + old_install.finalize_options(self) + self.install_lib = self.install_libbase |