From: Christian Marangi Date: Sun, 3 Jul 2022 00:06:21 +0000 (+0200) Subject: rules_mk: don't include wrapped bin with external toolchains X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=a90eabf60255773231ed0259e5da5eb6a36fe9ce;p=openwrt%2Fstaging%2Fjow.git rules_mk: don't include wrapped bin with external toolchains Don't add wrapped bin to the TARGET_PATH as it does cause compilation error. cmake.mk will use the "command -v" and will use the wrapped bin instead of the external toolchain bin as they have the same name and command will select the first result. Signed-off-by: Christian Marangi --- diff --git a/rules.mk b/rules.mk index dd375ff3d5..5a56fd6f4a 100644 --- a/rules.mk +++ b/rules.mk @@ -208,7 +208,6 @@ ifndef DUMP ifneq ($(TOOLCHAIN_LIB_DIRS),) TARGET_LDFLAGS+= $(patsubst %,-L%,$(TOOLCHAIN_LIB_DIRS)) endif - TARGET_PATH:=$(TOOLCHAIN_DIR)/bin:$(TARGET_PATH) endif endif endif