From 1e0a218f2a542c2d18e03633a08851de2e5d497f Mon Sep 17 00:00:00 2001 From: Pan Li Date: Tue, 21 Nov 2023 15:40:52 +0800 Subject: Remove ESC char for board extra abi argument As we have quotes surround the argument already, it is unnecessary to ESC `;` to `\;` due to the `;` has special meanings in shell. Signed-off-by: Pan Li --- Makefile.in | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.in b/Makefile.in index 723a6f3..7b7a4df 100644 --- a/Makefile.in +++ b/Makefile.in @@ -97,7 +97,7 @@ GLIBC_TARGET_BOARDS ?= $(shell $(srcdir)/scripts/generate_target_board \ --sim-name riscv-sim \ --cmodel $(shell echo @cmodel@ | cut -d '=' -f2) \ --build-arch-abi $(GLIBC_MULTILIB_NAMES) \ - --extra-test-arch-abi-flags-list "$(subst ;,\;,$(EXTRA_MULTILIB_TEST))") + --extra-test-arch-abi-flags-list "$(EXTRA_MULTILIB_TEST)") NEWLIB_CC_FOR_TARGET ?= $(NEWLIB_TUPLE)-gcc NEWLIB_CXX_FOR_TARGET ?= $(NEWLIB_TUPLE)-g++ @@ -105,13 +105,13 @@ NEWLIB_TARGET_BOARDS ?= $(shell $(srcdir)/scripts/generate_target_board \ --sim-name riscv-sim \ --cmodel $(shell echo @cmodel@ | cut -d '=' -f2) \ --build-arch-abi $(NEWLIB_MULTILIB_NAMES) \ - --extra-test-arch-abi-flags-list "$(subst ;,\;,$(EXTRA_MULTILIB_TEST))") + --extra-test-arch-abi-flags-list "$(EXTRA_MULTILIB_TEST)") NEWLIB_NANO_TARGET_BOARDS ?= $(shell $(srcdir)/scripts/generate_target_board \ --sim-name riscv-sim-nano \ --cmodel $(shell echo @cmodel@ | cut -d '=' -f2) \ --build-arch-abi $(NEWLIB_MULTILIB_NAMES) \ - --extra-test-arch-abi-flags-list "$(subst ;,\;,$(EXTRA_MULTILIB_TEST))") + --extra-test-arch-abi-flags-list "$(EXTRA_MULTILIB_TEST)") NEWLIB_CC_FOR_MULTILIB_INFO := $(NEWLIB_CC_FOR_TARGET) MUSL_TARGET_FLAGS := $(MUSL_TARGET_FLAGS_EXTRA) -- cgit v1.1