diff options
author | David Cournapeau <cournape@gmail.com> | 2009-08-04 09:54:03 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-08-04 09:54:03 +0000 |
commit | b9b85f81702ebeaed6b39eff40d12fe2b05a2a27 (patch) | |
tree | fb6350379f88116ec584d6b972e049f179547719 /numpy/distutils/command/install_clib.py | |
parent | bc196b4df375b2e877165b1692cd702d672cb0fe (diff) | |
download | numpy-b9b85f81702ebeaed6b39eff40d12fe2b05a2a27.tar.gz |
Fix typo in install_clib fix.
Diffstat (limited to 'numpy/distutils/command/install_clib.py')
-rw-r--r-- | numpy/distutils/command/install_clib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/command/install_clib.py b/numpy/distutils/command/install_clib.py index cef6c7db4..638d4beac 100644 --- a/numpy/distutils/command/install_clib.py +++ b/numpy/distutils/command/install_clib.py @@ -24,7 +24,7 @@ class install_clib(Command): compiler = new_compiler(compiler=None) compiler.customize(self.distribution) else: - compiler = build_clib.compiler + compiler = build_clib_cmd.compiler for l in self.distribution.installed_libraries: target_dir = os.path.join(self.install_dir, l.target_dir) |