Skip to content

Commit 8f55efb

Browse files
authored
fix openssl3 linking issues in portable binaries (#1247)
1 parent 2ce2c8f commit 8f55efb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

assembly/native/build-macos-portable.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ if [ ! -d "openssl_3" ]; then
8888
cd openssl_3
8989
opensslPath=`pwd`
9090
git checkout openssl-3.1.4
91-
./config -static
91+
./config
9292
make build_libs -j12
9393
test $? -eq 0 || { echo "Can't compile openssl_3"; exit 1; }
9494
cd ..

assembly/native/build-ubuntu-portable.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ if [ ! -d "openssl_3" ]; then
8181
cd openssl_3
8282
opensslPath=`pwd`
8383
git checkout openssl-3.1.4
84-
./config -static
84+
./config
8585
make build_libs -j12
8686
test $? -eq 0 || { echo "Can't compile openssl_3"; exit 1; }
8787
cd ..

0 commit comments

Comments
 (0)