Skip to content

Commit

Permalink
create autoGen makefile in ebcdic
Browse files Browse the repository at this point in the history
  • Loading branch information
psoujany committed Dec 9, 2024
1 parent 2c8d222 commit 2a548c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/openj9/envInfo/EnvDetector.java
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ private static void getJavaInfo() {
*/
BufferedWriter output = null;
try {
if (JDK_VERSION.matches("2\\d") && SPECInfo.contains("zos")) {
if (JDK_VERSION.matches("2\\d") && SPEC.contains("zos")) {
output = new BufferedWriter(new OutputStreamWriter(new FileOutputStream("autoGenEnv.mk"), Charset.forName("IBM-1047")));
System.out.println("I'm in 21");
} else {
Expand Down

0 comments on commit 2a548c1

Please sign in to comment.