diff options
-rwxr-xr-x | mingw-w64-build | 8 |
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() |