From 52776027f1cd0c4c18f860792a5217bb84bc0a5c Mon Sep 17 00:00:00 2001 From: Tristan Date: Fri, 4 Nov 2022 13:46:06 +0000 Subject: [PATCH] Set Linux target to linux-glibc when building HAProxy raw binaries on Linux --- haproxy/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/haproxy/Makefile b/haproxy/Makefile index 0137573..8a92cc9 100644 --- a/haproxy/Makefile +++ b/haproxy/Makefile @@ -54,7 +54,8 @@ MAKEARGS_LINUX = $(MAKEARGS) \ USE_PCRE2_JIT=1 \ USE_STATIC_PCRE2=1 \ USE_NS=1 \ - USE_SYSTEMD=1 + USE_SYSTEMD=1 \ + TARGET=linux-glibc MAKEARGS_DARWIN = $(MAKEARGS) \ CC=$(shell brew --prefix llvm)/bin/clang \