Skip to content

Commit

Permalink
chore: fix openssl
Browse files Browse the repository at this point in the history
  • Loading branch information
aeweda committed Nov 13, 2024
1 parent 3cbe6fd commit 5721454
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions docker/cross-compilation/openssl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ main() {
local dependencies=(
ca-certificates
curl
wget
m4
make
perl
Expand All @@ -42,8 +43,8 @@ main() {
td=$(mktemp -d)

pushd $td
curl https://www.openssl.org/source/openssl-$version.tar.gz | \
tar --strip-components=1 -xz
wget https://www.openssl.org/source/openssl-$version.tar.gz
tar --strip-components=1 -xzvf openssl-$version.tar.gz
AR=${triple}ar CC=${triple}gcc ./Configure \
--prefix=/openssl \
no-dso \
Expand Down

0 comments on commit 5721454

Please sign in to comment.