diff options
author | David Cournapeau <cournape@gmail.com> | 2008-12-16 18:48:37 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2008-12-16 18:48:37 +0000 |
commit | eb1f98d5137ab32de9e1c4201dd0a3d0aadf9b6e (patch) | |
tree | 8fe63f0a34cfce3902c1d5e59d28354592cb0d76 | |
parent | 543a1635fcf6d12eae596d5f406fad63263201e7 (diff) | |
download | numpy-eb1f98d5137ab32de9e1c4201dd0a3d0aadf9b6e.tar.gz |
Fix overriding of library_dirs.
-rw-r--r-- | numpy/distutils/fcompiler/gnu.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/fcompiler/gnu.py b/numpy/distutils/fcompiler/gnu.py index edadd26c3..d1b12c540 100644 --- a/numpy/distutils/fcompiler/gnu.py +++ b/numpy/distutils/fcompiler/gnu.py @@ -271,7 +271,7 @@ class Gnu95FCompiler(GnuFCompiler): return self._add_arches_for_universal_build(flags) def get_library_dirs(self): - opt = GnuFCompiler.get_libraries(self) + opt = GnuFCompiler.get_library_dirs(self) if sys.platform == 'win32': c_compiler = self.c_compiler if c_compiler and c_compiler.compiler_type == "msvc": |