Skip to content

Commit

Permalink
FIXUP
Browse files Browse the repository at this point in the history
  • Loading branch information
madscientist159 committed Nov 15, 2019
1 parent b9324fe commit 3a84244
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.pl
Original file line number Diff line number Diff line change
Expand Up @@ -772,8 +772,11 @@ ()
return "x86_64"
if ( $b_os =~ /RHEL[0-9]+_64/ || $b_os =~ /CENTOS[0-9]+_64/ );

return "ppc64el"
if ( ( (POSIX::uname)[4] eq "ppc64le" ) and ( $b_os =~ /UBUNTU[0-9]+/) );

return "ppc64le"
if ( (POSIX::uname)[4] eq "ppc64le" );
if ( ( (POSIX::uname)[4] eq "ppc64le" ) and ( $b_os =~ /RHEL[0-9]+_64/ || $b_os =~ /CENTOS[0-9]+_64/ ) );

Die("Could not determine BUILD_ARCH");
}
Expand Down

0 comments on commit 3a84244

Please sign in to comment.