From d79e3cb48ab70365ffab8221fbde22051058a505 Mon Sep 17 00:00:00 2001 From: jow Date: Tue, 26 May 2015 11:37:05 +0000 Subject: [PATCH 1/1] build: trigger pacakge index creation for all feeds if required When CONFIG_PER_FEED_REPO_ADD_DISABLED is set, trigger index creation for any available feed, regardless of whether there where binaries built or not. Signed-off-by: Jo-Philipp Wich git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45765 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- package/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/package/Makefile b/package/Makefile index 94b807f5d5..a601dcbb31 100644 --- a/package/Makefile +++ b/package/Makefile @@ -132,7 +132,11 @@ endif PACKAGE_SUBDIRS=. ifneq ($(CONFIG_PER_FEED_REPO),) - PACKAGE_SUBDIRS=base $(FEEDS_ENABLED) + ifneq ($(CONFIG_PER_FEED_REPO_ADD_DISABLED),) + PACKAGE_SUBDIRS=base $(FEEDS_AVAILABLE) + else + PACKAGE_SUBDIRS=base $(FEEDS_ENABLED) + endif endif $(curdir)/index: FORCE -- 2.11.0