diff mbox series

[LEDE-DEV] opkg: fix PKG_CONFIG_DEPENDS to include version.mk entries

Message ID 20171205084612.14926-1-zajec5@gmail.com
State Accepted
Delegated to: John Crispin
Headers show
Series [LEDE-DEV] opkg: fix PKG_CONFIG_DEPENDS to include version.mk entries | expand

Commit Message

Rafał Miłecki Dec. 5, 2017, 8:46 a.m. UTC
From: Rafał Miłecki <rafal@milecki.pl>

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>
---
 package/system/opkg/Makefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/package/system/opkg/Makefile b/package/system/opkg/Makefile
index 499de217cc..b213e5e445 100644
--- a/package/system/opkg/Makefile
+++ b/package/system/opkg/Makefile
@@ -27,7 +27,8 @@  PKG_MAINTAINER:=Jo-Philipp Wich <jo@mein.io>
 
 PKG_FLAGS := nonshared
 
-PKG_CONFIG_DEPENDS := \
+# Extend depends from version.mk
+PKG_CONFIG_DEPENDS += \
 	CONFIG_SIGNED_PACKAGES \
 	CONFIG_TARGET_INIT_PATH \
 	CONFIG_PER_FEED_REPO \