make sure that base-files is installed last, this allows per-target base-file overlays to work correctly

SVN-Revision: 27138
This commit is contained in:
Jo-Philipp Wich 2011-06-08 19:38:25 +00:00
parent ed0e649a5b
commit b179722c71
1 changed files with 1 additions and 1 deletions

View File

@ -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-))