blob: eb43ba2ac42c0747157d8edde520d3935ddbe82b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$NetBSD: patch-Makefile.am,v 1.2 2018/11/03 12:51:54 leot Exp $
Do dynamic linking of libtool libraries too (otherwise bin/jq can
ends up to be statically linked).
--- Makefile.am.orig 2018-11-02 01:49:29.000000000 +0000
+++ Makefile.am
@@ -106,7 +106,7 @@ src/builtin.o: src/builtin.inc
bin_PROGRAMS = jq
jq_SOURCES = src/main.c src/version.h
-jq_LDFLAGS = -static-libtool-libs
+jq_LDFLAGS =
jq_LDADD = libjq.la -lm
if WIN32
|