diff options
author | Matthias Schiffer <mschiffer@universe-factory.net> | 2018-07-09 22:13:19 +0200 |
---|---|---|
committer | Matthias Schiffer <mschiffer@universe-factory.net> | 2018-07-12 21:26:41 +0200 |
commit | 7fa7c854fe335384d2a2f6fe0fd6397b04e0d4fa (patch) | |
tree | 460cae46ee4a92712029a4e266dea62c06177d92 /include | |
parent | a5b9553cf5922262383f7c42ec5e145a86c71624 (diff) | |
download | mtk-20170518-7fa7c854fe335384d2a2f6fe0fd6397b04e0d4fa.zip mtk-20170518-7fa7c854fe335384d2a2f6fe0fd6397b04e0d4fa.tar.gz mtk-20170518-7fa7c854fe335384d2a2f6fe0fd6397b04e0d4fa.tar.bz2 |
include/feeds.mk: always add available feeds to PACKAGE_SUBDIRS
Setting CONFIG_FEED_... symbols combined two different effects: Disabling
a feed in the generated opkg distfeeds.conf, and omitting the feed from
PACKAGE_SUBDIRS.
It does not make sense to omit built feeds from PACKAGE_SUBDIRS, as it will
only lead to packages that can be enabled in .config (and that will
consequently be built) not to be found during rootfs creation, breaking
the build. All feeds that packages are emitted to should simply always be
added to PACKAGE_SUBDIRS instead; the CONFIG_FEED_... only configure the
generated distfeeds.conf like this.
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
(cherry picked from commit 9af22f1ac9122b54700dd38f627fdd446e1109f4)
Diffstat (limited to 'include')
-rw-r--r-- | include/feeds.mk | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/include/feeds.mk b/include/feeds.mk index cecd304..c9ffa95 100644 --- a/include/feeds.mk +++ b/include/feeds.mk @@ -16,11 +16,7 @@ FEEDS_DISABLED:=$(filter-out $(FEEDS_ENABLED),$(FEEDS_AVAILABLE)) PACKAGE_SUBDIRS=$(PACKAGE_DIR) ifneq ($(CONFIG_PER_FEED_REPO),) PACKAGE_SUBDIRS += $(OUTPUT_DIR)/packages/$(ARCH_PACKAGES)/base - ifneq ($(CONFIG_PER_FEED_REPO_ADD_DISABLED),) - PACKAGE_SUBDIRS += $(foreach FEED,$(FEEDS_AVAILABLE),$(OUTPUT_DIR)/packages/$(ARCH_PACKAGES)/$(FEED)) - else - PACKAGE_SUBDIRS += $(foreach FEED,$(FEEDS_ENABLED),$(OUTPUT_DIR)/packages/$(ARCH_PACKAGES)/$(FEED)) - endif + PACKAGE_SUBDIRS += $(foreach FEED,$(FEEDS_AVAILABLE),$(OUTPUT_DIR)/packages/$(ARCH_PACKAGES)/$(FEED)) endif opkg_package_files = $(wildcard \ |