diff options
| author | David Cournapeau <cournape@gmail.com> | 2009-07-26 11:03:58 +0000 |
|---|---|---|
| committer | David Cournapeau <cournape@gmail.com> | 2009-07-26 11:03:58 +0000 |
| commit | 78de166d5bd2a41f90defd899abb9fb6c14c6c79 (patch) | |
| tree | d2fe5c273fae57fddc9dbe024826e85909ec21e7 /numpy/distutils/command/__init__.py | |
| parent | 27160564fa6d81889ec8ed53cf8f263cfbec476e (diff) | |
| download | numpy-78de166d5bd2a41f90defd899abb9fb6c14c6c79.tar.gz | |
Add a install_clib command.
Diffstat (limited to 'numpy/distutils/command/__init__.py')
| -rw-r--r-- | numpy/distutils/command/__init__.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/numpy/distutils/command/__init__.py b/numpy/distutils/command/__init__.py index dfe81d542..87546aeee 100644 --- a/numpy/distutils/command/__init__.py +++ b/numpy/distutils/command/__init__.py @@ -7,7 +7,7 @@ __revision__ = "$Id: __init__.py,v 1.3 2005/05/16 11:08:49 pearu Exp $" distutils_all = [ 'build_py', 'clean', - 'install_lib', + 'install_clib', 'install_scripts', 'bdist', 'bdist_dumb', @@ -26,6 +26,7 @@ __all__ = ['build', 'install', 'install_data', 'install_headers', + 'install_lib', 'bdist_rpm', 'sdist', ] + distutils_all |
