diff options
author | Pearu Peterson <pearu.peterson@gmail.com> | 2007-05-19 15:21:41 +0000 |
---|---|---|
committer | Pearu Peterson <pearu.peterson@gmail.com> | 2007-05-19 15:21:41 +0000 |
commit | ba1beffdaf55be34e8152e5faef0ba81ef35e57f (patch) | |
tree | 2f5d135772205d285299b5b70ffe33111b280df6 /numpy/distutils/command/config.py | |
parent | 6ad1f673224d9698164499f7d93010c8ba2e18df (diff) | |
download | numpy-ba1beffdaf55be34e8152e5faef0ba81ef35e57f.tar.gz |
Fix typo.
Diffstat (limited to 'numpy/distutils/command/config.py')
-rw-r--r-- | numpy/distutils/command/config.py | 2 |
1 files changed, 1 insertions, 1 deletions
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) |