From e1258f984ac16f84182e0d4202258d89483bfe0d Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Wed, 6 Aug 2014 09:12:31 +0000 Subject: include: fix detection of installed feeds Signed-off-by: Jo-Philipp Wich SVN-Revision: 42003 --- include/feeds.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'include') diff --git a/include/feeds.mk b/include/feeds.mk index 17ce64f..97b1449 100644 --- a/include/feeds.mk +++ b/include/feeds.mk @@ -8,8 +8,9 @@ -include $(TMP_DIR)/.packagefeeds FEEDS_AVAILABLE:=$(shell $(SCRIPT_DIR)/feeds list -n) -FEEDS_INSTALLED:=$(patsubst %.index,%,$(notdir $(wildcard $(TOPDIR)/feeds/*.index))) +FEEDS_INSTALLED:=$(notdir $(wildcard $(TOPDIR)/package/feeds/*)) FEEDS_ENABLED:=$(foreach feed,$(FEEDS_INSTALLED),$(if $(CONFIG_FEED_$(feed)),$(feed))) +FEEDS_DISABLED:=$(filter-out $(FEEDS_ENABLED),$(FEEDS_INSTALLED)) PKG_CONFIG_DEPENDS += \ CONFIG_PER_FEED_REPO \ -- cgit v1.1