lede-packages-rs

git clone git://archive.git.mtrnord.blog/MTRNord/lede-packages-rs.git
Log | Files | Refs | README | LICENSE

commit 8915b1e03ba24ba76f4151dfe8bba3adb35262af
parent b291e4988712c51c5e427676f00f011384af3123
Author: Stijn Tintel <stijn@linux-ipv6.be>
Date:   Wed,  4 Jan 2017 13:10:13 +0100

net-snmp: fix libnl dependency

When libnl-core is enabled, but libnl isn't, build fails because of a
missing dependency on libnl-3.so.200. Depending on libnl-core seems to
work for both cases.

Signed-off-by: Stijn Tintel <stijn@linux-ipv6.be>

Diffstat:
Mnet/net-snmp/Makefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/net-snmp/Makefile b/net/net-snmp/Makefile @@ -38,7 +38,7 @@ define Package/libnetsnmp $(call Package/net-snmp/Default) SECTION:=libs CATEGORY:=Libraries - DEPENDS:=+PACKAGE_libnl:libnl + DEPENDS:=+PACKAGE_libnl-core:libnl-core TITLE:=Open source SNMP implementation (libraries) endef