summaryrefslogtreecommitdiff
path: root/package/Makefile
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2011-06-08 19:38:25 +0000
committerJo-Philipp Wich <jow@openwrt.org>2011-06-08 19:38:25 +0000
commitb179722c71d2c6fb227054cbbb2ec97819d52573 (patch)
tree8ab09e96df01ae1c936ec6c1e734cfeb67df079a /package/Makefile
parented0e649a5b0b4664eeb85a6137542ec4c0de7513 (diff)
downloadmtk-20170518-b179722c71d2c6fb227054cbbb2ec97819d52573.zip
mtk-20170518-b179722c71d2c6fb227054cbbb2ec97819d52573.tar.gz
mtk-20170518-b179722c71d2c6fb227054cbbb2ec97819d52573.tar.bz2
make sure that base-files is installed last, this allows per-target base-file overlays to work correctly
SVN-Revision: 27138
Diffstat (limited to 'package/Makefile')
-rw-r--r--package/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/Makefile b/package/Makefile
index 4f2cbf1..7d2c42d 100644
--- a/package/Makefile
+++ b/package/Makefile
@@ -14,7 +14,7 @@ ifeq ($(SDK),1)
else
$(curdir)/builddirs-default:=. $(sort $(package-y) $(package-m))
$(curdir)/builddirs-prereq:=. $(sort $(prereq-y) $(prereq-m))
- $(curdir)/builddirs-install:=. $(sort $(package-y))
+ $(curdir)/builddirs-install:=. $(filter-out base-files,$(sort $(package-y))) $(filter base-files,$(package-y))
endif
ifneq ($(IGNORE_ERRORS),)
$(curdir)/builddirs-ignore-compile:= $(if $(filter n m y, $(IGNORE_ERRORS)),$(foreach m,$(IGNORE_ERRORS),$(package-$(subst n,,$(m)))),$(package-m) $(package-))