diff options
author | mattip <matti.picus@gmail.com> | 2019-10-24 18:49:36 +0300 |
---|---|---|
committer | mattip <matti.picus@gmail.com> | 2019-10-25 00:27:18 +0300 |
commit | 396af7def65e75b6ef8a4e82f8aa8a357a9230f4 (patch) | |
tree | 4e373bb16120f150777f2a8dcdbf276c1f851484 /numpy/distutils | |
parent | a2a131fb95700395b606f85f19edb49f50d6d5fa (diff) | |
download | numpy-396af7def65e75b6ef8a4e82f8aa8a357a9230f4.tar.gz |
BUILD: emit more helpful error messages when compiler is broken
Diffstat (limited to 'numpy/distutils')
-rw-r--r-- | numpy/distutils/system_info.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/distutils/system_info.py b/numpy/distutils/system_info.py index 5fd1003ab..96d06f654 100644 --- a/numpy/distutils/system_info.py +++ b/numpy/distutils/system_info.py @@ -1580,7 +1580,7 @@ def get_atlas_version(**config): log.info('Status: %d', s) log.info('Output: %s', o) - if atlas_version == '3.2.1_pre3.3.6': + elif atlas_version == '3.2.1_pre3.3.6': dict_append(info, define_macros=[('NO_ATLAS_INFO', -2)]) else: dict_append(info, define_macros=[( |