aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Marangi <ansuelsmth@gmail.com>2022-07-03 02:06:21 +0200
committerHauke Mehrtens <hauke@hauke-m.de>2022-10-03 17:40:26 +0200
commit18a88668b8ede053919e9ec9b71364cab8e94c57 (patch)
treebdfe917137f9f715fbdb678838915807f8b182dc
parent29927e347a1b1c256ca39076f23dfc7bbeae798d (diff)
downloadupstream-18a88668b8ede053919e9ec9b71364cab8e94c57.tar.gz
upstream-18a88668b8ede053919e9ec9b71364cab8e94c57.tar.bz2
upstream-18a88668b8ede053919e9ec9b71364cab8e94c57.zip
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 <ansuelsmth@gmail.com> (cherry picked from commit a90eabf60255773231ed0259e5da5eb6a36fe9ce)
-rw-r--r--rules.mk1
1 files changed, 0 insertions, 1 deletions
diff --git a/rules.mk b/rules.mk
index 5bc63e34d2..c893f61b0f 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