diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-10-06 16:01:06 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-10-06 16:01:06 +0000 |
commit | 6683f47568f53d23b743ccc9e7ece22851542ec3 (patch) | |
tree | fc4fa7e354f89168dfef355257fe96bb8c5be74a /Makefile | |
parent | fc96ba7411576da2232cf2cb7122c6440f3b8122 (diff) | |
download | upstream-6683f47568f53d23b743ccc9e7ece22851542ec3.tar.gz upstream-6683f47568f53d23b743ccc9e7ece22851542ec3.tar.bz2 upstream-6683f47568f53d23b743ccc9e7ece22851542ec3.zip |
build: rework the package/install step - collect package install lists during package/compile, then install all packages at once
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@33631 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -40,11 +40,9 @@ else $(toolchain/stamp-install): $(tools/stamp-install) $(target/stamp-compile): $(toolchain/stamp-install) $(tools/stamp-install) $(BUILD_DIR)/.prepared -$(package/stamp-cleanup): $(target/stamp-compile) -$(package/stamp-compile): $(target/stamp-compile) $(package/stamp-cleanup) +$(package/stamp-compile): $(target/stamp-compile) $(package/stamp-install): $(package/stamp-compile) -$(package/stamp-rootfs-prepare): $(package/stamp-install) -$(target/stamp-install): $(package/stamp-compile) $(package/stamp-install) $(package/stamp-rootfs-prepare) +$(target/stamp-install): $(package/stamp-compile) $(package/stamp-install) printdb: @true @@ -86,7 +84,7 @@ prereq: $(target/stamp-prereq) tmp/.prereq_packages fi prepare: .config $(tools/stamp-install) $(toolchain/stamp-install) -world: prepare $(target/stamp-compile) $(package/stamp-cleanup) $(package/stamp-compile) $(package/stamp-install) $(package/stamp-rootfs-prepare) $(target/stamp-install) FORCE +world: prepare $(target/stamp-compile) $(package/stamp-compile) $(package/stamp-install) $(target/stamp-install) FORCE $(_SINGLE)$(SUBMAKE) -r package/index # update all feeds, re-create index files, install symlinks |