From 6ed1107d49bb0ee95b693b42a142c274f1b08539 Mon Sep 17 00:00:00 2001 From: eeff <33566201+eeff@users.noreply.github.com> Date: Tue, 30 Jan 2024 09:50:47 +0800 Subject: [PATCH] fix cross-install.sh openssl build --- cross-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cross-install.sh b/cross-install.sh index 74a55b73..b158589a 100755 --- a/cross-install.sh +++ b/cross-install.sh @@ -103,7 +103,7 @@ function build_openssl() { cd openssl mkdir -p $install_dir/openssl/ssl platform=linux-$arch - if [[ "arch" == "riscv64" ]]; then + if [[ $arch == "riscv64" ]]; then platform=linux-generic64 fi ./Configure $platform no-asm no-async shared \