Skip to content

Commit

Permalink
remove options
Browse files Browse the repository at this point in the history
  • Loading branch information
psoujany committed Dec 2, 2024
1 parent 23bb165 commit 2a31fc3
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,6 @@ UNAME := uname
UNAME_OS := $(shell $(UNAME) -s | cut -f1 -d_)
ifeq ($(findstring CYGWIN,$(UNAME_OS)), CYGWIN)
LIB_DIR:=$(shell cygpath -w $(LIB_DIR))
else ifeq ($(UNAME), OS/390)
ifeq ($(shell test $(JDK_VERSION) -ge 21; echo $$?),0)
JVM_OPTIONS:= "-Dfile.encoding=IBM-1047"
$(info JVM_OPTIONS set $(JVM_OPTIONS))
endif
endif


Expand Down Expand Up @@ -88,7 +83,13 @@ compile: buildListGen
# If AUTO_DETECT is turned on, compile and execute envDetector in build_envInfo.xml.
#######################################
envDetect: compileTools
${TEST_JDK_HOME}$(D)bin$(D)java $(JVM_OPTIONS) -cp .$(D)bin$(D)TestKitGen.jar org.openj9.envInfo.EnvDetector
ifeq ($(UNAME), OS/390)
ifeq ($(shell test $(JDK_VERSION) -ge 21; echo $$?),0)
${TEST_JDK_HOME}$(D)bin$(D)java -Dfile.encoding=IBM-1047 -cp .$(D)bin$(D)TestKitGen.jar org.openj9.envInfo.EnvDetector
else
${TEST_JDK_HOME}$(D)bin$(D)java -cp .$(D)bin$(D)TestKitGen.jar org.openj9.envInfo.EnvDetector
endif
endif

#######################################
# Generate refined BUILD_LIST.
Expand Down

0 comments on commit 2a31fc3

Please sign in to comment.