diff options
author | Rafał Miłecki <rafal@milecki.pl> | 2017-06-16 13:23:22 +0200 |
---|---|---|
committer | Rafał Miłecki <rafal@milecki.pl> | 2017-06-22 10:05:23 +0200 |
commit | b91a38d6479ec7ca028352013e3f27e05491cc95 (patch) | |
tree | 11377062cbcab998d8cf5a8efb46bcb85f3e5165 /package/base-files/Makefile | |
parent | 680a5c5d3e4737d6d96fc1b34aba93d04d2390b3 (diff) | |
download | upstream-b91a38d6479ec7ca028352013e3f27e05491cc95.tar.gz upstream-b91a38d6479ec7ca028352013e3f27e05491cc95.tar.bz2 upstream-b91a38d6479ec7ca028352013e3f27e05491cc95.zip |
base-files: fix PKG_CONFIG_DEPENDS to include version.mk entries
Including version.mk sets PKG_CONFIG_DEPENDS to config entries used for
VERSION_SED command. We should keep these configs to make sure package
gets refreshed when needed.
Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
Diffstat (limited to 'package/base-files/Makefile')
-rw-r--r-- | package/base-files/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/base-files/Makefile b/package/base-files/Makefile index 54c157611f..6a1dff7b7b 100644 --- a/package/base-files/Makefile +++ b/package/base-files/Makefile @@ -18,7 +18,8 @@ PKG_FILE_DEPENDS:=$(PLATFORM_DIR)/ $(GENERIC_PLATFORM_DIR)/base-files/ PKG_BUILD_DEPENDS:=usign/host PKG_LICENSE:=GPL-2.0 -PKG_CONFIG_DEPENDS := \ +# Extend depends from version.mk +PKG_CONFIG_DEPENDS += \ CONFIG_SIGNED_PACKAGES CONFIG_TARGET_INIT_PATH CONFIG_TARGET_PREINIT_DISABLE_FAILSAFE \ CONFIG_NAND_SUPPORT |