- make absolutely sure that we are not trying to go into jobserver mode for MAKE1

This commit is contained in:
Bernhard Reutner-Fischer 2007-01-30 17:33:53 +00:00
parent 446f4f912d
commit b82245322e

View File

@ -1,5 +1,8 @@
MAKE1=make
MAKE=make -j$(BR2_JLEVEL)
ifndef MAKE
MAKE=make
endif
MAKE1:=$(MAKE) MAKE="$(firstword $(MAKE)) -j1"
MAKE:=$(MAKE) -j$(BR2_JLEVEL)
# Strip off the annoying quoting
ARCH:=$(strip $(subst ",, $(BR2_ARCH)))