From d7d480cc88a6675171680a5bca805615b5c0a428 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Mon, 9 Oct 2023 17:38:33 +0100 Subject: [PATCH] Use openssl github repository to get sources instead of DependencyMirror we only need to mirror stuff that isn't available from GitHub. --- compile.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile.sh b/compile.sh index c7113101..1e2eef71 100755 --- a/compile.sh +++ b/compile.sh @@ -593,7 +593,7 @@ function build_openssl { if cant_use_cache "$openssl_dir"; then rm -rf "$openssl_dir" write_download - download_from_mirror "openssl-$OPENSSL_VERSION.tar.gz" "openssl" | tar -zx >> "$DIR/install.log" 2>&1 + download_github_src "openssl/openssl" "openssl-$OPENSSL_VERSION" "openssl" | tar -zx >> "$DIR/install.log" 2>&1 write_configure cd "$openssl_dir"