From 28c490333f9cbaf1c656a786714e2d0b252270f2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Luk=C3=A1=C5=A1=20Zaoral?= Date: Thu, 31 Mar 2022 14:06:03 +0200 Subject: [PATCH] Makefile: honour LDFLAGS passed to ./configure The configure script help says that the LDFLAGS environment variable can be used to pass additional flags to linker during build. However, Makefile.in did not mention this variable at all so the additional flags were silently skipped. --- Makefile.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.in b/Makefile.in index db31aad..99c2e65 100644 --- a/Makefile.in +++ b/Makefile.in @@ -110,7 +110,7 @@ DFLAGS += $(TFLAGS) endif ifndef LFLAGS -LFLAGS = @STRIP@ +LFLAGS = @STRIP@ @LDFLAGS@ endif # Commands -- 2.40.0