From 1cb8d235a146d225faa007a3934d33ef84b6ba19 Mon Sep 17 00:00:00 2001 From: Craig Comstock Date: Thu, 16 Jul 2026 13:04:57 -0500 Subject: [PATCH] Removed suse >= 15 from platforms using system provided OpenSSL In commit 0e1f4e3b1ebc0323dcf1a2b7944f681d86d03cc7 this removal was skipped for no good reason. Ticket: ENT-13750 Chaneglog: none --- build-scripts/compile-options | 5 ----- 1 file changed, 5 deletions(-) diff --git a/build-scripts/compile-options b/build-scripts/compile-options index 12dbee8f4..7b0d9936a 100644 --- a/build-scripts/compile-options +++ b/build-scripts/compile-options @@ -32,11 +32,6 @@ export PROJECT # It's a flag: if it's set to 1 - then we use system OpenSSL. # Otherwise, we build it. if [ -z "$SYSTEM_SSL" ]; then - if [ "$OS" = "opensuse" ] || [ "$OS" = "sles" ]; then - if [ "$OS_VERSION_MAJOR" -ge "15" ]; then - SYSTEM_SSL=1 - fi - fi # Detect using system ssl when running a Jenkins job # shellcheck disable=SC2154 # > label is referenced but not assigned.