diff --git a/contrib/ChangeLog b/contrib/ChangeLog index f6b353959b4..db1d6fbdb19 100644 --- a/contrib/ChangeLog +++ b/contrib/ChangeLog @@ -1,3 +1,7 @@ +2019-11-13 Janne Blomqvist + + * download_prerequisites: Use http instead of ftp for downloading. + 2019-11-08 Martin Liska * mklog: The script fails for patches that contain: diff --git a/contrib/download_prerequisites b/contrib/download_prerequisites index 72976c46c92..aa0356e6266 100755 --- a/contrib/download_prerequisites +++ b/contrib/download_prerequisites @@ -32,7 +32,7 @@ mpfr='mpfr-3.1.4.tar.bz2' mpc='mpc-1.0.3.tar.gz' isl='isl-0.18.tar.bz2' -base_url='ftp://gcc.gnu.org/pub/gcc/infrastructure/' +base_url='http://gcc.gnu.org/pub/gcc/infrastructure/' echo_archives() { echo "${gmp}" @@ -58,7 +58,7 @@ esac if type wget > /dev/null ; then fetch='wget' else - fetch='curl -LO -u anonymous:' + fetch='curl -LO' fi chksum_extension='sha512' directory='.'