diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2007-05-19 15:24:20 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2007-05-19 15:24:20 +0000 |
commit | 2f70b977daff3fba00cbe1c02ec063ff10b45b96 (patch) | |
tree | 93b118c4122c514e09ca8d40bb67cb9229f52c1f /numpy/distutils/command/config.py | |
parent | ba1beffdaf55be34e8152e5faef0ba81ef35e57f (diff) | |
download | numpy-2f70b977daff3fba00cbe1c02ec063ff10b45b96.tar.gz |
More typo fixes.
Diffstat (limited to 'numpy/distutils/command/config.py')
-rw-r--r-- | numpy/distutils/command/config.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/numpy/distutils/command/config.py b/numpy/distutils/command/config.py index 4b456aeb9..75a574fca 100644 --- a/numpy/distutils/command/config.py +++ b/numpy/distutils/command/config.py @@ -61,15 +61,13 @@ class config(old_config): if lang in ['f77','f90']: lang = 'c' # always use system linker when using MSVC compiler if self.fcompiler: - f_lib_dirs = [] for d in self.fcompiler.library_dirs or []: # correct path when compiling in Cygwin but with normal Win # Python if d.startswith('/usr/lib'): s,o = exec_command(['cygpath', '-w', d], use_tee=False) if not s: d = o - f_lib_dirs.append(d) - library_dirs.extend(f_lib_dirs) + library_dirs.append(d) for libname in self.fcompiler.libraries or []: if libname not in libraries: libraries.append(libname) |