diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-07-12 12:50:16 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-07-12 12:50:16 +0000 |
commit | d6c65d33320887fbd926c9eb0ad1436a012c6733 (patch) | |
tree | be96796d579bf00d7ba2dd79fc1e7500c2036051 /package | |
parent | 6f66bc61f974567d06f488cbf5146d9a7d648500 (diff) | |
download | upstream-d6c65d33320887fbd926c9eb0ad1436a012c6733.tar.gz upstream-d6c65d33320887fbd926c9eb0ad1436a012c6733.tar.bz2 upstream-d6c65d33320887fbd926c9eb0ad1436a012c6733.zip |
fix parallel build issues
SVN-Revision: 7941
Diffstat (limited to 'package')
-rw-r--r-- | package/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/Makefile b/package/Makefile index d6af3f28f7..59ee670a76 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 $*-%,%,$@) |