From 84e3283be390476decc7adfde0892f62f2054772 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Wed, 21 Dec 2022 16:16:36 +0100 Subject: [PATCH] BUILD: makefile: support RT_LDFLAGS The LDFLAGS appended by USE_RT can now be overridden using RT_LDFLAGS. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a5235530d..63c7f788b 100644 --- a/Makefile +++ b/Makefile @@ -544,7 +544,7 @@ ifneq ($(USE_EVPORTS),) endif ifneq ($(USE_RT),) - OPTIONS_LDFLAGS += -lrt + RT_LDFLAGS = -lrt endif ifneq ($(USE_THREAD),)