[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1435400728-13012-1-git-send-email-gustavo@zacarias.com.ar>
Date: Sat, 27 Jun 2015 07:25:28 -0300
From: Gustavo Zacarias <gustavo@...arias.com.ar>
To: netdev@...r.kernel.org
Cc: Gustavo Zacarias <gustavo@...arias.com.ar>
Subject: [PATCH iproute2] tipc: make build conditional on having libmnl
Signed-off-by: Gustavo Zacarias <gustavo@...arias.com.ar>
---
Makefile | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
index 67176be..8153445 100644
--- a/Makefile
+++ b/Makefile
@@ -41,7 +41,11 @@ WFLAGS += -Wmissing-declarations -Wold-style-definition -Wformat=2
CFLAGS := $(WFLAGS) $(CCOPTS) -I../include $(DEFINES) $(CFLAGS)
YACCFLAGS = -d -t -v
-SUBDIRS=lib ip tc bridge misc netem genl tipc man
+SUBDIRS=lib ip tc bridge misc netem genl man
+
+ifeq ($(HAVE_MNL),y)
+SUBDIRS += tipc
+endif
LIBNETLINK=../lib/libnetlink.a ../lib/libutil.a
LDLIBS += $(LIBNETLINK)
--
2.3.6
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists