Skip to content

Commit

Permalink
8259656: fixpath.sh changes broke _NT_SYMBOL_PATH in RunTests.gmk
Browse files Browse the repository at this point in the history
Reviewed-by: tbell, ihse
  • Loading branch information
erikj79 committed Feb 9, 2021
1 parent ef7ee3f commit 05c6009
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion make/RunTestsPrebuilt.gmk
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,10 @@ ifeq ($(OPENJDK_TARGET_CPU), x86_64)
endif

ifeq ($(OPENJDK_TARGET_OS), windows)
FIXPATH := $(BASH) $(TOPDIR)/make/scripts/fixpath.sh exec
FIXPATH_BASE := $(BASH) $(TOPDIR)/make/scripts/fixpath.sh
FIXPATH := $(FIXPATH_BASE) exec
else
FIXPATH_BASE :=
FIXPATH :=
endif

Expand Down Expand Up @@ -273,6 +275,7 @@ $(call CreateNewSpec, $(NEW_SPEC), \
MAKE := $(MAKE), \
BASH := $(BASH), \
JIB_JAR := $(JIB_JAR), \
FIXPATH_BASE := $(FIXPATH_BASE), \
FIXPATH := $(FIXPATH), \
OPENJDK_TARGET_OS := $(OPENJDK_TARGET_OS), \
OPENJDK_TARGET_OS_TYPE := $(OPENJDK_TARGET_OS_TYPE), \
Expand Down

0 comments on commit 05c6009

Please sign in to comment.