[Numpy-svn] r3790 - trunk/numpy/distutils/command
numpy-svn at scipy.org
numpy-svn at scipy.org
Sat May 19 11:24:27 EDT 2007
Author: pearu
Date: 2007-05-19 10:24:20 -0500 (Sat, 19 May 2007)
New Revision: 3790
Modified:
trunk/numpy/distutils/command/config.py
Log:
More typo fixes.
Modified: trunk/numpy/distutils/command/config.py
===================================================================
--- trunk/numpy/distutils/command/config.py 2007-05-19 15:21:41 UTC (rev 3789)
+++ trunk/numpy/distutils/command/config.py 2007-05-19 15:24:20 UTC (rev 3790)
@@ -61,15 +61,13 @@
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)
More information about the Numpy-svn
mailing list