From e64f876bab5eadab55805557963a0745289b3749 Mon Sep 17 00:00:00 2001 From: Baruch Siach Date: Mon, 20 Mar 2017 22:52:41 +0200 Subject: [PATCH] keepalived: fix libnl optional dependency List libnl as a dependency when it is enabled. Make sure that libnfnetlink is actually enabled when listing it as a dependency. Cc: Ilias Apalodimas Signed-off-by: Baruch Siach Signed-off-by: Thomas Petazzoni --- package/keepalived/keepalived.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/keepalived/keepalived.mk b/package/keepalived/keepalived.mk index 97a4daa8b..95757ff68 100644 --- a/package/keepalived/keepalived.mk +++ b/package/keepalived/keepalived.mk @@ -13,8 +13,8 @@ KEEPALIVED_CONF_OPTS += --disable-dbus KEEPALIVED_PATCH = https://github.com/acassen/keepalived/commit/5d98b7b69fcbba84fa69e5b5e9a019bfbcb76e8b.patch -ifeq ($(BR2_PACKAGE_LIBNL),y) -KEEPALIVED_DEPENDENCIES += libnfnetlink +ifeq ($(BR2_PACKAGE_LIBNL)$(BR2_PACKAGE_LIBNFNETLINK),yy) +KEEPALIVED_DEPENDENCIES += libnl libnfnetlink endif ifeq ($(BR2_PACKAGE_IPSET),y) -- 2.11.4.GIT