summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2018-07-09 23:50:28 +0200
committerMatthias Schiffer <mschiffer@universe-factory.net>2018-07-12 21:26:41 +0200
commit3e89f58a5ead1511f594704951946a79fc0b79d7 (patch)
tree40f6a20505c0c4d9bc2a4c72bd4ab6a3574bac96
parent7fa7c854fe335384d2a2f6fe0fd6397b04e0d4fa (diff)
downloadmtk-20170518-3e89f58a5ead1511f594704951946a79fc0b79d7.zip
mtk-20170518-3e89f58a5ead1511f594704951946a79fc0b79d7.tar.gz
mtk-20170518-3e89f58a5ead1511f594704951946a79fc0b79d7.tar.bz2
base-files: fix feed list in PKG_CONFIG_DEPENDS
FEEDS_ENABLED and FEEDS_DISABLED are derived from FEEDS_AVAILABLE, not FEEDS_INSTALLED. Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net> (cherry picked from commit 6dac434c0011524b9ac01725727faa1a19ea4a48)
-rw-r--r--package/base-files/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile
index 7175dae..ef29798 100644
--- a/package/base-files/Makefile
+++ b/package/base-files/Makefile
@@ -27,7 +27,7 @@ PKG_CONFIG_DEPENDS += \
CONFIG_PER_FEED_REPO \
CONFIG_PER_FEED_REPO_ADD_DISABLED \
CONFIG_PER_FEED_REPO_ADD_COMMENTED \
- $(foreach feed,$(FEEDS_INSTALLED),CONFIG_FEED_$(feed))
+ $(foreach feed,$(FEEDS_AVAILABLE),CONFIG_FEED_$(feed))
include $(INCLUDE_DIR)/package.mk