aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Schwarz <zeranoe@gmail.com>2021-08-31 19:34:37 -0400
committerKyle Schwarz <zeranoe@gmail.com>2021-08-31 19:34:37 -0400
commitfc1b5051d78672c4ac62a82565260d0305054f0b (patch)
tree0262b9c70b4b71441f465bac55fa244d469e3f0e
parent73f3ddaabad202171ee89e032500f3de0458f9d2 (diff)
Switch to https for downloads
Credit to @lnslbrty for suggesting this.
-rwxr-xr-xmingw-w64-build8
1 files changed, 4 insertions, 4 deletions
diff --git a/mingw-w64-build b/mingw-w64-build
index 8b2ff39..96a1f55 100755
--- a/mingw-w64-build
+++ b/mingw-w64-build
@@ -127,19 +127,19 @@ download_sources()
execute "downloading MinGW-w64 source" "" \
git clone --depth 1 -b "$MINGW_W64_BRANCH" \
- git://git.code.sf.net/p/mingw-w64/mingw-w64 mingw-w64
+ https://git.code.sf.net/p/mingw-w64/mingw-w64 mingw-w64
execute "downloading Binutils source" "" \
git clone --depth 1 -b "$BINUTILS_BRANCH" \
- git://sourceware.org/git/binutils-gdb.git binutils
+ https://sourceware.org/git/binutils-gdb.git binutils
execute "downloading GCC source" "" \
git clone --depth 1 -b "$GCC_BRANCH" \
- git://gcc.gnu.org/git/gcc.git gcc
+ https://gcc.gnu.org/git/gcc.git gcc
execute "downloading config.guess" "" \
curl -o config.guess \
- "http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD"
+ "https://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD"
}
build()