1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-01 00:21:51 +02:00

fix parallel build issues

SVN-Revision: 7941
This commit is contained in:
Felix Fietkau 2007-07-12 12:50:16 +00:00
parent 6f66bc61f9
commit d6c65d3332

@ -24,13 +24,13 @@ $(STAMP_DIR) $(TARGET_DIR):
ifeq ($(QUIET),1)
%-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
else
%-prepare %-prereq %-download %-clean %-compile %-install: FORCE
endif
$(MAKE) -C $* $(patsubst $*-%,%,$@)
$(MAKE) -j1 -C $* $(patsubst $*-%,%,$@)
%-refresh %-update:
-$(MAKE) -C $* $(patsubst $*-%,%,$@)