Skip to content

Commit

Permalink
JavaInfo.java: accept osArch i386
Browse files Browse the repository at this point in the history
  • Loading branch information
zzambers committed Jul 15, 2024
1 parent 1ce4269 commit 789ebab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/openj9/envInfo/JavaInfo.java
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ public String getSPEC(String javaImplInfo) {
return null;
}

if (osArch.contains("amd64") || osArch.contains("x86")) {
if (osArch.contains("amd64") || osArch.contains("x86") || osArch.contains("i386")) {
spec += "_x86";
} else if (osArch.contains("ppc") || osArch.contains("powerpc")) {
spec += "_ppc";
Expand Down

0 comments on commit 789ebab

Please sign in to comment.