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 <jow@openwrt.org> SVN-Revision: 45765
This commit is contained in:
parent
35497a0400
commit
edbb32897a
1 changed files with 5 additions and 1 deletions
|
@ -132,8 +132,12 @@ endif
|
||||||
|
|
||||||
PACKAGE_SUBDIRS=.
|
PACKAGE_SUBDIRS=.
|
||||||
ifneq ($(CONFIG_PER_FEED_REPO),)
|
ifneq ($(CONFIG_PER_FEED_REPO),)
|
||||||
|
ifneq ($(CONFIG_PER_FEED_REPO_ADD_DISABLED),)
|
||||||
|
PACKAGE_SUBDIRS=base $(FEEDS_AVAILABLE)
|
||||||
|
else
|
||||||
PACKAGE_SUBDIRS=base $(FEEDS_ENABLED)
|
PACKAGE_SUBDIRS=base $(FEEDS_ENABLED)
|
||||||
endif
|
endif
|
||||||
|
endif
|
||||||
|
|
||||||
$(curdir)/index: FORCE
|
$(curdir)/index: FORCE
|
||||||
@echo Generating package index...
|
@echo Generating package index...
|
||||||
|
|
Loading…
Reference in a new issue