From f852d311455c4af07dfd4551042048a8569d52bb Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Wed, 21 Dec 2022 16:19:22 +0100 Subject: [PATCH] BUILD: makefile: support SYSTEMD_LDFLAGS The LDFLAGS appended by USE_SYSTEMD can now be overridden using SYSTEMD_LDFLAGS. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8e723643c..0cafdad07 100644 --- a/Makefile +++ b/Makefile @@ -713,7 +713,7 @@ ifneq ($(USE_WURFL),) endif ifneq ($(USE_SYSTEMD),) - OPTIONS_LDFLAGS += -lsystemd + SYSTEMD_LDFLAGS = -lsystemd endif ifneq ($(USE_PCRE)$(USE_STATIC_PCRE)$(USE_PCRE_JIT),)