Skip to content
This repository has been archived by the owner on Oct 16, 2021. It is now read-only.

Commit

Permalink
Merge pull request #40 from shahidhs/patch-1
Browse files Browse the repository at this point in the history
Update configure to properly detect s390x architecture, as both s390 and s390x will be defined on the platform.
  • Loading branch information
joransiu committed Jun 19, 2015
2 parents 809d99d + f56c6b5 commit 65a6c5e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion configure
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,10 @@ def host_arch_cc():
for i in matchup:
if i in k and k[i] != '0':
rtn = matchup[i]
break
if (rtn == 's390'):
continue
else:
break

return rtn

Expand Down

0 comments on commit 65a6c5e

Please sign in to comment.