From: Yann E. MORIN Date: Sat, 27 Nov 2010 22:44:02 +0000 (+0100) Subject: toolchain/crosstool-NG: use HOST_PATH when building the toolchain X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=512bb3c6d4abd461376668fb2eac7e7e1f3a7ab2;p=buildroot.git toolchain/crosstool-NG: use HOST_PATH when building the toolchain Signed-off-by: "Yann E. MORIN" Signed-off-by: Peter Korsgaard --- diff --git a/toolchain/toolchain-crosstool-ng/crosstool-ng.mk b/toolchain/toolchain-crosstool-ng/crosstool-ng.mk index 1e8fa7aa14..31797c4871 100644 --- a/toolchain/toolchain-crosstool-ng/crosstool-ng.mk +++ b/toolchain/toolchain-crosstool-ng/crosstool-ng.mk @@ -28,7 +28,7 @@ CTNG_UCLIBC_CONFIG_FILE := $(TOPDIR)/toolchain/toolchain-crosstool-ng/uClibc.con # to calling ct-ng. # $1: the set of arguments to pass to ct-ng define ctng -$(CTNG_DIR)/ct-ng -C $(CTNG_DIR) --no-print-directory $(1) +PATH=$(HOST_PATH) $(CTNG_DIR)/ct-ng -C $(CTNG_DIR) --no-print-directory $(1) endef #-----------------------------------------------------------------------------