From: Josef Schlehofer Date: Thu, 6 Aug 2026 10:39:35 +0000 (+0200) Subject: olsrd: add missing jshn dependency to olsrd-utils X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=d4c843ea2fd80a91ba736b556750aac829130b8d;p=openwrt-packages.git olsrd: add missing jshn dependency to olsrd-utils The only file shipped by olsrd-utils is olsrd-neigh.sh, which sources /usr/share/libubox/jshn.sh on its third line. That file belongs to the jshn package, which is not pulled in by the olsrd -> libubus -> libubox dependency chain, so on a minimal image the utility fails immediately with "not found". Reported-by: openwrt-ai[bot] Signed-off-by: Josef Schlehofer Co-authored-by: Claude Fable 5 --- diff --git a/net/olsrd/Makefile b/net/olsrd/Makefile index 524262075..8160b8a2b 100644 --- a/net/olsrd/Makefile +++ b/net/olsrd/Makefile @@ -159,7 +159,7 @@ endef define Package/olsrd-utils $(call Package/olsrd/template) - DEPENDS:=olsrd + DEPENDS:=olsrd +jshn TITLE:=Utils for OLSRD endef