From: Stijn Tintel Date: Wed, 4 Jan 2017 12:10:13 +0000 (+0100) Subject: net-snmp: fix libnl dependency X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=8915b1e03ba24ba76f4151dfe8bba3adb35262af;p=openwrt-packages.git 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 --- 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