From acfeb55a86c4d7a92b45a7bfdd4c1724cbb8af26 Mon Sep 17 00:00:00 2001 From: Gustavo Zacarias Date: Sat, 27 Jun 2015 08:15:50 -0300 Subject: [PATCH] tipc: make build conditional on having libmnl Signed-off-by: Gustavo Zacarias --- tipc/Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tipc/Makefile b/tipc/Makefile index 4bda8c5da..b3ef9b9d4 100644 --- a/tipc/Makefile +++ b/tipc/Makefile @@ -1,3 +1,6 @@ +include ../Config +ifeq ($(HAVE_MNL),y) + TIPCOBJ=bearer.o \ cmdl.o link.o \ media.o misc.o \ @@ -8,6 +11,8 @@ TIPCOBJ=bearer.o \ TARGETS=tipc LDLIBS += -lmnl +endif + all: $(TARGETS) $(LIBS) tipc: $(TIPCOBJ) -- 2.47.2