Skip to content
Snippets Groups Projects
Commit d79e3cb4 authored by jow's avatar jow
Browse files

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: default avatarJo-Philipp Wich <jow@openwrt.org>

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@45765 3c298f89-4303-0410-b956-a3cf2f4a3e73
parent 868c1891
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment