From ba1beffdaf55be34e8152e5faef0ba81ef35e57f Mon Sep 17 00:00:00 2001 From: Pearu Peterson Date: Sat, 19 May 2007 15:21:41 +0000 Subject: Fix typo. --- numpy/distutils/command/config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'numpy/distutils') diff --git a/numpy/distutils/command/config.py b/numpy/distutils/command/config.py index 1d7c876d6..4b456aeb9 100644 --- a/numpy/distutils/command/config.py +++ b/numpy/distutils/command/config.py @@ -65,7 +65,7 @@ class config(old_config): 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) -- cgit v1.2.1