diff options
author | Rafał Miłecki <rafal@milecki.pl> | 2017-12-14 09:39:18 +0100 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2017-12-14 09:39:40 +0100 |
commit | d2e96d55ab071fddac46001d308ce834070bba2c (patch) | |
tree | a1d36953f8b9fba345587862bf84303b3ec74667 | |
parent | f4b9d9d6f13c898d473ce678234339e4a9dba5b2 (diff) | |
download | upstream-d2e96d55ab071fddac46001d308ce834070bba2c.tar.gz upstream-d2e96d55ab071fddac46001d308ce834070bba2c.tar.bz2 upstream-d2e96d55ab071fddac46001d308ce834070bba2c.zip |
opkg: 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>
-rw-r--r-- | package/system/opkg/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/package/system/opkg/Makefile b/package/system/opkg/Makefile index 7b49a3b111..76557f3c34 100644 --- a/package/system/opkg/Makefile +++ b/package/system/opkg/Makefile @@ -23,7 +23,8 @@ PKG_LICENSE_FILES:=COPYING PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io> -PKG_CONFIG_DEPENDS := \ +# Extend depends from version.mk +PKG_CONFIG_DEPENDS += \ CONFIG_SIGNED_PACKAGES \ CONFIG_TARGET_INIT_PATH |