Makefile: Fix warning: jobserver unavailable: using -j1. Add '+' to parent make rule.
This commit is contained in:
parent
0dde32fb43
commit
7f653a87f7
4
Makefile
4
Makefile
@ -52,13 +52,13 @@ all: $(BIN)
|
|||||||
.PRECIOUS: $(BIN)
|
.PRECIOUS: $(BIN)
|
||||||
|
|
||||||
define MAKE_template
|
define MAKE_template
|
||||||
$(Q) cd $(1) && $(MAKE) $(2) TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"
|
+$(Q) $(MAKE) -C $(1) $(2) TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"
|
||||||
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
define SDIR_template
|
define SDIR_template
|
||||||
$(1)_$(2):
|
$(1)_$(2):
|
||||||
$(Q) cd $(1) && $(MAKE) $(2) TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"
|
+$(Q) $(MAKE) -C $(1) $(2) TOPDIR="$(TOPDIR)" APPDIR="$(APPDIR)"
|
||||||
|
|
||||||
endef
|
endef
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user