From 35cceb642861ccc59ca4f1e9d0c8b9cbee2e23bc Mon Sep 17 00:00:00 2001 From: joey0320 Date: Sat, 17 Dec 2022 00:53:29 -0800 Subject: [PATCH] Fix SBT_BIN to java -jar from sbt --- variables.mk | 2 -- 1 file changed, 2 deletions(-) diff --git a/variables.mk b/variables.mk index d6ef81ec..9c68d594 100644 --- a/variables.mk +++ b/variables.mk @@ -214,8 +214,6 @@ SBT_CLIENT_FLAG = --client endif # passes $(JAVA_TOOL_OPTIONS) from env to java -# Use java -jar approach by default so that SBT thin-client sees the JAVA flags -# Workaround for behavior reported here: https://github.com/sbt/sbt/issues/6468 SBT_BIN ?= java -jar $(ROCKETCHIP_DIR)/sbt-launch.jar SBT = $(SBT_BIN) $(SBT_CLIENT_FLAG) SBT_NON_THIN = $(subst $(SBT_CLIENT_FLAG),,$(SBT))