Skip to content

Commit

Permalink
Revert options
Browse files Browse the repository at this point in the history
  • Loading branch information
psoujany committed Oct 28, 2024
1 parent 32c5ddf commit 6233d4e
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,17 +40,16 @@ UNAME := uname
UNAME_OS := $(shell $(UNAME) -s | cut -f1 -d_)
ifeq ($(findstring CYGWIN,$(UNAME_OS)), CYGWIN)
LIB_DIR:=$(shell cygpath -w $(LIB_DIR))
endif

export LIB_DIR:=$(subst \,/,$(LIB_DIR))
$(info LIB_DIR is set to $(LIB_DIR))

ifeq ($(UNAME), OS/390)
else ifeq ($(UNAME), OS/390)
ifeq ($(shell test $(JDK_VERSION) -ge 21; echo $$?),0)
JVM_OPTIONS:= "-Dfile.encoding=IBM-1047"
endif
endif


export LIB_DIR:=$(subst \,/,$(LIB_DIR))
$(info LIB_DIR is set to $(LIB_DIR))

_TESTTARGET = $(firstword $(MAKECMDGOALS))
TESTTARGET = $(patsubst _%,%,$(_TESTTARGET))

Expand Down

0 comments on commit 6233d4e

Please sign in to comment.