aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Schwarz <zeranoe@gmail.com>2020-01-16 20:05:27 -0500
committerKyle Schwarz <zeranoe@gmail.com>2020-01-16 20:05:27 -0500
commit6c1e50dfd12ed2af750bb2c1908357b90aa49870 (patch)
tree74012b23a292e9ec906d3a421bb4073aaa520188
parent5fb7bcc70be0b16d8d69772000b096069ad8a85d (diff)
Fix git URLs for GCC and Binutils
-rwxr-xr-xmingw-w64-build4
1 files changed, 2 insertions, 2 deletions
diff --git a/mingw-w64-build b/mingw-w64-build
index 4ed9eed..5c2aae2 100755
--- a/mingw-w64-build
+++ b/mingw-w64-build
@@ -86,10 +86,10 @@ download_sources()
git clone --depth 1 -b v7.x git://git.code.sf.net/p/mingw-w64/mingw-w64 mingw-w64-$v_mingww64 || error_exit
echo "downloading binutils" >&3
- git clone --depth 1 -b binutils-2_33-branch --single-branch git://sourceware.org/git/binutils-gdb.git binutils-$v_binutils || error_exit
+ git clone --depth 1 -b binutils-2_33-branch git://sourceware.org/git/binutils-gdb.git binutils-$v_binutils || error_exit
echo "downloading gcc" >&3
- git clone --depth 1 -b gcc-9-branch git://gcc.gnu.org/git/gcc.git gcc-$v_gcc || error_exit
+ git clone --depth 1 -b releases/gcc-9 git://gcc.gnu.org/git/gcc.git gcc-$v_gcc || error_exit
local urls=(
"https://ftp.gnu.org/gnu/gmp/gmp-$v_gmp.tar.xz"