From 8915b1e03ba24ba76f4151dfe8bba3adb35262af Mon Sep 17 00:00:00 2001 From: Stijn Tintel Date: Wed, 4 Jan 2017 13:10:13 +0100 Subject: [PATCH] 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 --- net/net-snmp/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/net-snmp/Makefile b/net/net-snmp/Makefile index 467a9b55f..893eee005 100644 --- 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