Compare commits

..

No commits in common. "fdbc1be7a84e88f45f9b768b7428ff33b77eb9bb" and "047a63250978f8513810438f95f8131247b63a03" have entirely different histories.

View file

@ -4,7 +4,7 @@ source util.sh
VERSION=$1
PREFIX="$2"
URL="https://ftpmirror.gnu.org/gnu/gcc/gcc-$VERSION/gcc-$VERSION.tar.xz"
URL="https://ftp.gnu.org/gnu/gcc/gcc-$VERSION/gcc-$VERSION.tar.xz"
ARCHIVE=$(basename "$URL")
# Final location of gcc in the sysroot
@ -77,7 +77,7 @@ if [[ -f "$ARCHIVE" ]]; then
else
echo "$TAG Downloading $URL..."
if command -v curl >/dev/null 2>&1; then
curl $URL -L -o $ARCHIVE
curl $URL -o $ARCHIVE
elif command -v wget >/dev/null 2>&1; then
wget -q --show-progress $URL -O $ARCHIVE
else