From 90eb6996b1002d4e216f8f9c95642b20f801e55b Mon Sep 17 00:00:00 2001 From: Emanuele Torre Date: Mon, 11 Dec 2023 21:15:56 +0100 Subject: [PATCH] Makefile.am: don't use -lshlwapi to build jq on WIN32 It does not need it, only libjq needs this. --- Makefile.am | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Makefile.am b/Makefile.am index 41c6f357be..437363b557 100644 --- a/Makefile.am +++ b/Makefile.am @@ -129,10 +129,6 @@ jq_SOURCES = src/main.c src/version.h jq_LDFLAGS = -static-libtool-libs jq_LDADD = libjq.la -lm -if WIN32 -jq_LDADD += -lshlwapi -endif - if ENABLE_ALL_STATIC jq_LDFLAGS += -all-static endif