summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
authorRalf Gommers <ralf.gommers@googlemail.com>2012-03-16 19:15:43 +0100
committerRalf Gommers <ralf.gommers@googlemail.com>2012-03-16 19:15:43 +0100
commit83480b6eb106d8c7e1d9293d7adc988c7c670778 (patch)
treed6754d3ee09b8abab7da0c6df7c679d4a97ffa8e /numpy
parent0258f19da8a21462d95abad68041056e6951c508 (diff)
downloadnumpy-83480b6eb106d8c7e1d9293d7adc988c7c670778.tar.gz
BUG: BLD: add missing line in distutils/system_info.py
This was incorrectly refactored in commit 1e8e5154, causing the build to break on some systems.
Diffstat (limited to 'numpy')
-rw-r--r--numpy/distutils/system_info.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py
index 3249140e1..2fbab79d4 100644
--- a/numpy/distutils/system_info.py
+++ b/numpy/distutils/system_info.py
@@ -1087,6 +1087,7 @@ class atlas_blas_info(atlas_info):
dict_append(info, include_dirs=[h])
info['language'] = 'c'
+ atlas_version, atlas_extra_info = get_atlas_version(**atlas)
dict_append(atlas, **atlas_extra_info)
dict_append(info, **atlas)