From 127e604f883663add9e1c633cdb845f43205e5d5 Mon Sep 17 00:00:00 2001 From: hilga007 <34434551+hilga007@users.noreply.github.com> Date: Sun, 20 Feb 2022 20:43:24 -0800 Subject: [PATCH] update build.libressl.sh update script to download 3.4.2 instead of 3.0.2 --- scripts/build.libressl.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/build.libressl.sh b/scripts/build.libressl.sh index e7495233..236d4d33 100755 --- a/scripts/build.libressl.sh +++ b/scripts/build.libressl.sh @@ -1,6 +1,6 @@ #!/bin/bash -e -LIBRESSL_VERSION="3.0.2" +LIBRESSL_VERSION="3.4.2" mkdir -p deps mkdir -p deps/include @@ -17,4 +17,4 @@ make -j$(nproc || sysctl -n hw.ncpu || sysctl -n hw.logicalcpu) cp -fr include ../../deps cp crypto/.libs/libcrypto.a ../../deps/lib cp ssl/.libs/libssl.a ../../deps/lib -cd .. \ No newline at end of file +cd ..