diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2010-07-01 02:28:30 +0200 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2010-07-01 02:42:58 +0200 |
commit | 92695d8e2603d3d78b6ce5bdba7dcb8535d98285 (patch) | |
tree | 31172ed0bd5712c1f08c2a2d0567e183dd083b68 | |
parent | 81fad0c42f0cf3d64c0fa49f82be49061f50060b (diff) |
Use http instead of ftp where possible.
This can avoid some problems in firewalled environments.
-rwxr-xr-x | summon-arm-toolchain | 4 |
1 files changed, 2 insertions, 2 deletions
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 |