[Numpy-svn] r3789 - trunk/numpy/distutils/command

numpy-svn at scipy.org numpy-svn at scipy.org
Sat May 19 11:21:45 EDT 2007


Author: pearu
Date: 2007-05-19 10:21:41 -0500 (Sat, 19 May 2007)
New Revision: 3789

Modified:
   trunk/numpy/distutils/command/config.py
Log:
Fix typo.

Modified: trunk/numpy/distutils/command/config.py
===================================================================
--- trunk/numpy/distutils/command/config.py	2007-05-19 15:20:48 UTC (rev 3788)
+++ trunk/numpy/distutils/command/config.py	2007-05-19 15:21:41 UTC (rev 3789)
@@ -65,7 +65,7 @@
                     for d in self.fcompiler.library_dirs or []:
                         # correct path when compiling in Cygwin but with normal Win
                         # Python
-                        if dir.startswith('/usr/lib'):
+                        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)




More information about the Numpy-svn mailing list