diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2012-03-13 17:29:40 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2012-03-13 17:29:40 +0000 |
commit | 432108e415a9ec576a487063c9407bbefda0bed0 (patch) | |
tree | e68f19ac60c1b716362d9a4d181a8f67ec5e7dfb /target | |
parent | 8e0414c16a2cbbd6d88df6fcfb8e8d0e2805a762 (diff) | |
download | upstream-432108e415a9ec576a487063c9407bbefda0bed0.tar.gz upstream-432108e415a9ec576a487063c9407bbefda0bed0.tar.bz2 upstream-432108e415a9ec576a487063c9407bbefda0bed0.zip |
imagebuilder: fix parallel building (closes #11117)
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@30927 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target')
-rw-r--r-- | target/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/target/Makefile b/target/Makefile index ff547f606f..81ec60234a 100644 --- a/target/Makefile +++ b/target/Makefile @@ -10,7 +10,10 @@ $(curdir)/builddirs:=linux sdk imagebuilder toolchain $(curdir)/builddirs-default:=linux $(curdir)/builddirs-install:=linux $(if $(CONFIG_SDK),sdk) $(if $(CONFIG_IB),imagebuilder) $(if $(CONFIG_MAKE_TOOLCHAIN),toolchain) -$(curdir)/imagebuilder/prepare:=$(curdir)/linux/install +$(curdir)/imagebuilder/compile:=$(curdir)/linux/install + +# prerequisites for the individual targets +$(curdir)//install = $(1)/compile $(eval $(call stampfile,$(curdir),target,prereq,.config)) $(eval $(call stampfile,$(curdir),target,compile,$(TMP_DIR)/.build)) |