Incorrectly assumes 32bit architecture on s390x systems #390
This commit is contained in:
parent
dc86f73d1b
commit
4951c920c5
1 changed files with 1 additions and 1 deletions
|
@ -1985,7 +1985,7 @@ sub check_architecture {
|
|||
$arch = 64;
|
||||
goodprint "Operating on 64-bit architecture";
|
||||
}
|
||||
elsif ( `uname` !~ /SunOS/ && `uname -m` =~ /64/ && `uname -m` !~ /s390x/ ) {
|
||||
elsif ( `uname` !~ /SunOS/ && `uname -m` =~ /(64|s390x)/ ) {
|
||||
$arch = 64;
|
||||
goodprint "Operating on 64-bit architecture";
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue