Skip to content

Commit

Permalink
Merge pull request #3818 from lxbarth/master
Browse files Browse the repository at this point in the history
BUG: fix platform detection for intel platforms
  • Loading branch information
rgommers committed Sep 28, 2013
2 parents 24df94c + 72accd2 commit 02e85a5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions numpy/distutils/system_info.py
Expand Up @@ -1386,6 +1386,7 @@ def calc_info(self):
args = []
link_args = []
if get_platform()[-4:] == 'i386' or 'intel' in get_platform() or \
'x86_64' in get_platform() or \
'i386' in platform.platform():
intel = 1
else:
Expand Down Expand Up @@ -1482,6 +1483,7 @@ def calc_info(self):
args = []
link_args = []
if get_platform()[-4:] == 'i386' or 'intel' in get_platform() or \
'x86_64' in get_platform() or \
'i386' in platform.platform():
intel = 1
else:
Expand Down

0 comments on commit 02e85a5

Please sign in to comment.