diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2010-11-07 19:33:11 +0100 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-11-07 19:33:11 +0100 |
commit | 64d8e9a0c1e6fffb0085c65b3879a2e327649d7f (patch) | |
tree | 34ea9175e602c6db2d07604d8bd41a8b9101af44 /Makefile | |
parent | 4c9f118e5db8d5c524137fca0375a28f36d44825 (diff) |
Makefile: move target-{finalize,purgelocales} after bootloader/linux step
Closes #2731
Bootloader and Linux kernel steps can add content to the rootfs, so ensure
the cleanup / postprocess steps are moved after those.
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -305,15 +305,16 @@ endif include package/*/*.mk +include boot/common.mk +include target/Makefile.in +include linux/linux.mk + TARGETS+=target-finalize ifeq ($(BR2_ENABLE_LOCALE_PURGE),y) TARGETS+=target-purgelocales endif -include boot/common.mk -include target/Makefile.in -include linux/linux.mk include fs/common.mk TARGETS+=erase-fakeroots |