From: Uwe Hermann Date: Thu, 1 Jul 2010 00:28:30 +0000 (+0200) Subject: Use http instead of ftp where possible. X-Git-Url: https://git.gag.com/?p=fw%2Fcortex-toolchain;a=commitdiff_plain;h=92695d8e2603d3d78b6ce5bdba7dcb8535d98285 Use http instead of ftp where possible. This can avoid some problems in firewalled environments. --- diff --git a/summon-arm-toolchain b/summon-arm-toolchain index 6f268e2..7977d8d 100755 --- a/summon-arm-toolchain +++ b/summon-arm-toolchain @@ -54,13 +54,13 @@ echo "Downloading binutils sources..." wget -c http://ftp.gnu.org/gnu/binutils/${BINUTILS}.tar.bz2 echo "Downloading gcc sources..." -wget -c ftp://ftp.gnu.org/gnu/gcc/${GCC}/${GCC}.tar.bz2 +wget -c http://ftp.gnu.org/gnu/gcc/${GCC}/${GCC}.tar.bz2 echo "Downloading newlib sources..." wget -c ftp://sources.redhat.com/pub/newlib/${NEWLIB}.tar.gz echo "Downloading gdb sources..." -wget -c ftp://ftp.gnu.org/gnu/gdb/${GDB}.tar.bz2 +wget -c http://ftp.gnu.org/gnu/gdb/${GDB}.tar.bz2 if [ ${LIBSTM32_EN} != 0 ]; then if [ ! -e libcmsis-${LIBCMSIS}.tar.bz2 ]; then