From 4705b600764c683e934da7db54f7971a3c647e8a Mon Sep 17 00:00:00 2001 From: Ulf Samuelsson Date: Tue, 17 Jul 2007 12:09:07 +0000 Subject: Ensure we use host 'make', even when building 'make' in buildroot --- package/Makefile.in | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) (limited to 'package/Makefile.in') diff --git a/package/Makefile.in b/package/Makefile.in index 2fe658353..29c505835 100644 --- a/package/Makefile.in +++ b/package/Makefile.in @@ -1,8 +1,13 @@ -ifndef MAKE -MAKE=make +ifndef MAKE +MAKE:=make endif -MAKE1:=$(MAKE) MAKE="$(firstword $(MAKE)) -j1" -MAKE:=$(MAKE) -j$(BR2_JLEVEL) +ifndef HOSTMAKE +HOSTMAKE=$(MAKE) +endif +HOSTMAKE :=$(shell $(CONFIG_SHELL) -c "which $(HOSTMAKE)" || type -p $(HOSTMAKE) || echo make) + +MAKE1:=$(HOSTMAKE) MAKE="$(firstword $(HOSTMAKE)) -j1" +MAKE:=$(HOSTMAKE) -j$(BR2_JLEVEL) # Strip off the annoying quoting ARCH:=$(strip $(subst ",, $(BR2_ARCH))) -- cgit v1.2.3