summaryrefslogtreecommitdiff
path: root/numpy/distutils/command/install.py
diff options
context:
space:
mode:
authorDavid Cournapeau <cournape@gmail.com>2009-07-26 11:03:58 +0000
committerDavid Cournapeau <cournape@gmail.com>2009-07-26 11:03:58 +0000
commit78de166d5bd2a41f90defd899abb9fb6c14c6c79 (patch)
treed2fe5c273fae57fddc9dbe024826e85909ec21e7 /numpy/distutils/command/install.py
parent27160564fa6d81889ec8ed53cf8f263cfbec476e (diff)
downloadnumpy-78de166d5bd2a41f90defd899abb9fb6c14c6c79.tar.gz
Add a install_clib command.
Diffstat (limited to 'numpy/distutils/command/install.py')
-rw-r--r--numpy/distutils/command/install.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/numpy/distutils/command/install.py b/numpy/distutils/command/install.py
index 87b549da8..2cfb9c4c9 100644
--- a/numpy/distutils/command/install.py
+++ b/numpy/distutils/command/install.py
@@ -10,6 +10,9 @@ from distutils.file_util import write_file
class install(old_install):
+ # XXX: fix the lambda: True
+ sub_commands = old_install.sub_commands + [('install_clib', lambda x: True)]
+
def finalize_options (self):
old_install.finalize_options(self)
self.install_lib = self.install_libbase