summaryrefslogtreecommitdiff
path: root/package/Makefile
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2007-07-12 12:50:16 +0000
committerFelix Fietkau <nbd@openwrt.org>2007-07-12 12:50:16 +0000
commitd6c65d33320887fbd926c9eb0ad1436a012c6733 (patch)
treebe96796d579bf00d7ba2dd79fc1e7500c2036051 /package/Makefile
parent6f66bc61f974567d06f488cbf5146d9a7d648500 (diff)
downloadmtk-20170518-d6c65d33320887fbd926c9eb0ad1436a012c6733.zip
mtk-20170518-d6c65d33320887fbd926c9eb0ad1436a012c6733.tar.gz
mtk-20170518-d6c65d33320887fbd926c9eb0ad1436a012c6733.tar.bz2
fix parallel build issues
SVN-Revision: 7941
Diffstat (limited to 'package/Makefile')
-rw-r--r--package/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/Makefile b/package/Makefile
index d6af3f2..59ee670 100644
--- a/package/Makefile
+++ b/package/Makefile
@@ -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 $*-%,%,$@)