diff options
author | Jo-Philipp Wich <jo@mein.io> | 2019-06-20 18:07:49 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2019-06-20 18:09:48 +0200 |
commit | a95ddaba0272f254a3aeade3aa0c086e1625d672 (patch) | |
tree | 79642ba974c9489707c54631a7250dd4da64d507 | |
parent | 0096a1cf0015e483b99e51c74f2f0bbae7247342 (diff) | |
download | upstream-a95ddaba0272f254a3aeade3aa0c086e1625d672.tar.gz upstream-a95ddaba0272f254a3aeade3aa0c086e1625d672.tar.bz2 upstream-a95ddaba0272f254a3aeade3aa0c086e1625d672.zip |
uhttpd: add direct dependency on libjson-c
The OpenWrt buildroot ABI version rebuild tracker does not handle
transient dependencies, therefor add all libraries linked by uhttpd
as direct dependencies to the corresponding binary package definition.
This ensures that uhttpd 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>
-rw-r--r-- | package/network/services/uhttpd/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/network/services/uhttpd/Makefile b/package/network/services/uhttpd/Makefile index caa59249d3..0738ec68f5 100644 --- a/package/network/services/uhttpd/Makefile +++ b/package/network/services/uhttpd/Makefile @@ -34,7 +34,7 @@ endef define Package/uhttpd $(Package/uhttpd/default) - DEPENDS:=+libubox +libblobmsg-json +libjson-script + DEPENDS:=+libubox +libblobmsg-json +libjson-script +libjson-c endef define Package/uhttpd/description |