mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-18 22:43:53 +01:00
fix parallel build issues
SVN-Revision: 7941
This commit is contained in:
parent
6f66bc61f9
commit
d6c65d3332
@ -24,13 +24,13 @@ $(STAMP_DIR) $(TARGET_DIR):
|
|||||||
|
|
||||||
ifeq ($(QUIET),1)
|
ifeq ($(QUIET),1)
|
||||||
%-compile %-install: FORCE
|
%-compile %-install: FORCE
|
||||||
$(MAKE) -C $* $(patsubst $*-%,%,$@) || { $(call MESSAGE, "*** $* $(patsubst $*-%,%,$@) failed"); false; }
|
$(MAKE) -j1 -C $* $(patsubst $*-%,%,$@) || { $(call MESSAGE, "*** $* $(patsubst $*-%,%,$@) failed"); false; }
|
||||||
|
|
||||||
%-prepare %-prereq %-download %-clean: FORCE
|
%-prepare %-prereq %-download %-clean: FORCE
|
||||||
else
|
else
|
||||||
%-prepare %-prereq %-download %-clean %-compile %-install: FORCE
|
%-prepare %-prereq %-download %-clean %-compile %-install: FORCE
|
||||||
endif
|
endif
|
||||||
$(MAKE) -C $* $(patsubst $*-%,%,$@)
|
$(MAKE) -j1 -C $* $(patsubst $*-%,%,$@)
|
||||||
|
|
||||||
%-refresh %-update:
|
%-refresh %-update:
|
||||||
-$(MAKE) -C $* $(patsubst $*-%,%,$@)
|
-$(MAKE) -C $* $(patsubst $*-%,%,$@)
|
||||||
|
Loading…
Reference in New Issue
Block a user