diff options
author | David Cournapeau <cournape@gmail.com> | 2009-07-26 11:07:26 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-07-26 11:07:26 +0000 |
commit | 3e3661d4650b7e76069ad4e91f5a4580056c498e (patch) | |
tree | a564d7203400c236b05517dc964ee74eea3eec38 /numpy/distutils/command/install.py | |
parent | 124c2aed20b5766b4e042f31bffc6be9266313f1 (diff) | |
download | numpy-3e3661d4650b7e76069ad4e91f5a4580056c498e.tar.gz |
Update comment on using install_clib as a subcommand.
Diffstat (limited to 'numpy/distutils/command/install.py')
-rw-r--r-- | numpy/distutils/command/install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/command/install.py b/numpy/distutils/command/install.py index 2cfb9c4c9..099ad5c16 100644 --- a/numpy/distutils/command/install.py +++ b/numpy/distutils/command/install.py @@ -10,7 +10,7 @@ from distutils.file_util import write_file class install(old_install): - # XXX: fix the lambda: True + # Always run install_clib - the command is cheap, so no need to bypass it sub_commands = old_install.sub_commands + [('install_clib', lambda x: True)] def finalize_options (self): |