From 8f55efbc016ec2e94b278efdd2ebba8f5f766e72 Mon Sep 17 00:00:00 2001 From: neodix42 Date: Sat, 12 Oct 2024 14:22:45 +0400 Subject: [PATCH] fix openssl3 linking issues in portable binaries (#1247) --- assembly/native/build-macos-portable.sh | 2 +- assembly/native/build-ubuntu-portable.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/assembly/native/build-macos-portable.sh b/assembly/native/build-macos-portable.sh index d17525f55..471f29afa 100644 --- a/assembly/native/build-macos-portable.sh +++ b/assembly/native/build-macos-portable.sh @@ -88,7 +88,7 @@ if [ ! -d "openssl_3" ]; then cd openssl_3 opensslPath=`pwd` git checkout openssl-3.1.4 - ./config -static + ./config make build_libs -j12 test $? -eq 0 || { echo "Can't compile openssl_3"; exit 1; } cd .. diff --git a/assembly/native/build-ubuntu-portable.sh b/assembly/native/build-ubuntu-portable.sh index aa2947cb7..39b49a38f 100644 --- a/assembly/native/build-ubuntu-portable.sh +++ b/assembly/native/build-ubuntu-portable.sh @@ -81,7 +81,7 @@ if [ ! -d "openssl_3" ]; then cd openssl_3 opensslPath=`pwd` git checkout openssl-3.1.4 - ./config -static + ./config make build_libs -j12 test $? -eq 0 || { echo "Can't compile openssl_3"; exit 1; } cd ..