diff options
author | Jo-Philipp Wich <jo@mein.io> | 2019-06-21 17:41:28 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2019-06-21 17:43:17 +0200 |
commit | eaad2211dbfb9fdf0815c8d19423069ec099bad2 (patch) | |
tree | 608426518930107d0912adb7d5b524b2b4ac30e7 /package | |
parent | 83c0ee621b8df6b8b5a90629d2ba610a927c050c (diff) | |
download | upstream-eaad2211dbfb9fdf0815c8d19423069ec099bad2.tar.gz upstream-eaad2211dbfb9fdf0815c8d19423069ec099bad2.tar.bz2 upstream-eaad2211dbfb9fdf0815c8d19423069ec099bad2.zip |
rpcd: add direct dependency on libjson-c
The OpenWrt buildroot ABI version rebuild tracker does not handle
transient dependencies, therefor add all libraries linked by rpcd
as direct dependencies to the corresponding binary package definition.
This ensures that rpcd is automatically rebuilt and relinked if any
of these libraries has its ABI_VERSION updated in the future.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'package')
-rw-r--r-- | package/system/rpcd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/system/rpcd/Makefile b/package/system/rpcd/Makefile index 00598917fd..11fe254d6f 100644 --- a/package/system/rpcd/Makefile +++ b/package/system/rpcd/Makefile @@ -39,7 +39,7 @@ endef define Package/rpcd $(Package/rpcd/default) - DEPENDS+= +libuci +libblobmsg-json + DEPENDS+= +libuci +libblobmsg-json +libjson-c endef define Package/rpcd/description |