From: Jo-Philipp Wich Date: Wed, 8 Jun 2011 19:38:25 +0000 (+0000) Subject: [package] make sure that base-files is installed last, this allows per-target base... X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=commitdiff_plain;h=2ab2ab011c92ceb936a8dab1bfea92d8ca1611d9 [package] make sure that base-files is installed last, this allows per-target base-file overlays to work correctly SVN-Revision: 27138 --- diff --git a/package/Makefile b/package/Makefile index 4f2cbf106e..7d2c42d8b8 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-))