From 9766192e950ae26bffeb4ecb5d930b58ce4df2a5 Mon Sep 17 00:00:00 2001 From: Pierre Pronchery Date: Mon, 29 Apr 2019 05:53:56 +0200 Subject: [PATCH] Fix the remote path to the binutils and gcc sources --- doc/cross-gcc.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/cross-gcc.sh b/doc/cross-gcc.sh index 85b1943..701be39 100644 --- a/doc/cross-gcc.sh +++ b/doc/cross-gcc.sh @@ -50,7 +50,7 @@ PATH="$PREFIX/bin:$PATH" #Download binutils [ -f "binutils-$BINUTILS_VERSION.tar.$GZEXT" ] || - $WGET "$MIRROR/pub/binutils/releases/binutils-$BINUTILS_VERSION.tar.$GZEXT" + $WGET "$MIRROR/binutils/binutils-$BINUTILS_VERSION.tar.$GZEXT" #Extract, configure, and build binutils in a dedicated tree [ -d "binutils-$BINUTILS_VERSION" ] || @@ -69,7 +69,7 @@ $MKDIR "binutils-$TARGET" #Download GCC [ -f "gcc-$GCC_VERSION.tar.$GZEXT" ] || - $WGET "$MIRROR/pub/gcc/releases/gcc-$GCC_VERSION/gcc-$GCC_VERSION.tar.$GZEXT" + $WGET "$MIRROR/gcc/gcc-$GCC_VERSION/gcc-$GCC_VERSION.tar.$GZEXT" #Extract, configure, and build GCC in a dedicated tree [ -d "gcc-$GCC_VERSION" ] ||