From 2f3ed68fb4604143e66c3224ea38ced9dac1f55f Mon Sep 17 00:00:00 2001 From: stevezhengshiqi Date: Wed, 6 Mar 2024 19:11:45 -0500 Subject: [PATCH] build: Fix nasm link, which has been moved to ftp2 --- buildnasm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildnasm.sh b/buildnasm.sh index d0d9bec4e..7bc924df0 100755 --- a/buildnasm.sh +++ b/buildnasm.sh @@ -94,7 +94,7 @@ fnDownloadNasm () local tarball="nasm-${NASM_VERSION}.tar.xz" if [[ ! -f "$tarball" ]]; then echo "Status: $tarball not found." - curl -f -o download.tmp --remote-name -k https://ftp.osuosl.org/pub/blfs/conglomeration/nasm/$tarball || exit 1 + curl -k -f -o download.tmp --remote-name https://ftp2.osuosl.org/pub/blfs/conglomeration/nasm/$tarball || exit 1 mv download.tmp $tarball fi }