From 39823a8009f97e309d4144ef66761f11263481f1 Mon Sep 17 00:00:00 2001 From: Holger Weiss Date: Sat, 22 Jul 2023 20:24:46 +0200 Subject: [PATCH] make-binaries: Only check OpenSSL 3.1.x versions While checking for the current OpenSSL version, consider only 3.1.x releases for the moment, as the OpenSSL web site currently lists lower versions before 3.1.x. --- scripts/make-binaries | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/make-binaries b/scripts/make-binaries index 2af66996b..f378b2d63 100755 --- a/scripts/make-binaries +++ b/scripts/make-binaries @@ -106,7 +106,7 @@ check_deps() { check_vsn 'OpenSSL' "$ssl_vsn" \ 'https://www.openssl.org/source/' \ - 'openssl-\([0-9][0-9.]*\)\.tar\.gz' + 'openssl-\(3\.1\.[0-9.]*\)\.tar\.gz' check_vsn 'LibYAML' "$yaml_vsn" \ 'https://pyyaml.org/wiki/LibYAML' \ 'yaml-\([0-9][0-9.]*\)\.tar\.gz'