From 019110823a72b683fcb7d9a0307ca395767b26e0 Mon Sep 17 00:00:00 2001 From: Lars Erik Wik Date: Mon, 10 Nov 2025 12:47:17 +0100 Subject: [PATCH] Change order of LDFLAGS to avoid picking up wrong version of SSL Ticket: ENT-13496 Signed-off-by: Lars Erik Wik --- build-scripts/compile-options | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-scripts/compile-options b/build-scripts/compile-options index a7e416308..0c9834864 100644 --- a/build-scripts/compile-options +++ b/build-scripts/compile-options @@ -90,7 +90,7 @@ esac # When we don't bundle OpenSSL, then we need to pull it from /usr/lib64. if [ "$SYSTEM_SSL" = 1 ]; then - LDFLAGS="$LDFLAGS -L/usr/lib64" + LDFLAGS="-L/usr/lib64 $LDFLAGS" fi export LDFLAGS