summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Kern <robert.kern@gmail.com>2007-04-30 16:29:51 +0000
committerRobert Kern <robert.kern@gmail.com>2007-04-30 16:29:51 +0000
commit9bcf5d809bfe0f23fdf6b26765b338b188f1befb (patch)
tree1802ad0d11e73caa97d4f25dc86d88d08b1aadfb
parent5eefd7aa5faaa9efb58ae92158d6364616b58f2b (diff)
downloadnumpy-9bcf5d809bfe0f23fdf6b26765b338b188f1befb.tar.gz
Fix typo.
-rw-r--r--numpy/distutils/system_info.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py
index a12304230..6e0ece065 100644
--- a/numpy/distutils/system_info.py
+++ b/numpy/distutils/system_info.py
@@ -816,7 +816,7 @@ class mkl_info(system_info):
if sys.platform == 'win32':
pass # win32 has no pthread library
else:
- dict_append(libraries = ['pthread'])
+ dict_append(info, libraries=['pthread'])
self.set_info(**info)
class lapack_mkl_info(mkl_info):