From 40ea40853da9c3fa03d52c2998998d103b80f593 Mon Sep 17 00:00:00 2001 From: Jakub Kicinski Date: Sat, 15 Nov 2025 14:55:08 -0800 Subject: [PATCH] tools: ynltool: remove -lmnl from link flags The libmnl dependency has been removed from libynl back in commit 73395b43819b ("tools: ynl: remove the libmnl dependency") Remove it from the ynltool Makefile. Reviewed-by: Donald Hunter Link: https://patch.msgid.link/20251115225508.1000072-1-kuba@kernel.org Signed-off-by: Jakub Kicinski --- tools/net/ynl/ynltool/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/net/ynl/ynltool/Makefile b/tools/net/ynl/ynltool/Makefile index 5edaa0f932374..f5b1de32daa5b 100644 --- a/tools/net/ynl/ynltool/Makefile +++ b/tools/net/ynl/ynltool/Makefile @@ -31,7 +31,7 @@ Q = @ $(YNLTOOL): ../libynl.a $(OBJS) $(Q)echo -e "\tLINK $@" - $(Q)$(CC) $(CFLAGS) -o $@ $(OBJS) ../libynl.a -lmnl -lm + $(Q)$(CC) $(CFLAGS) -o $@ $(OBJS) ../libynl.a -lm %.o: %.c ../libynl.a $(Q)echo -e "\tCC $@" -- 2.47.3