mirror of
https://git.planet-casio.com/Lephenixnoir/sh-elf-binutils.git
synced 2025-04-19 01:17:01 +02:00
Compare commits
3 commits
Author | SHA1 | Date | |
---|---|---|---|
|
c4a6e2effa | ||
|
3f6e1c4673 | ||
|
445a595288 |
2 changed files with 3 additions and 3 deletions
|
@ -4,7 +4,7 @@ source util.sh
|
|||
|
||||
VERSION=$1
|
||||
PREFIX="$2"
|
||||
URL="https://ftp.gnu.org/gnu/binutils/binutils-$VERSION.tar.xz"
|
||||
URL="https://ftpmirror.gnu.org/gnu/binutils/binutils-$VERSION.tar.xz"
|
||||
ARCHIVE=$(basename "$URL")
|
||||
|
||||
# Final location of ld in the sysroot
|
||||
|
@ -85,7 +85,7 @@ if [[ -f "$ARCHIVE" ]]; then
|
|||
else
|
||||
echo "$TAG Downloading $URL..."
|
||||
if command -v curl >/dev/null 2>&1; then
|
||||
curl "$URL" -o "$ARCHIVE"
|
||||
curl "$URL" -L -o "$ARCHIVE"
|
||||
elif command -v wget >/dev/null 2>&1; then
|
||||
wget -q --show-progress "$URL" -O "$ARCHIVE"
|
||||
else
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
# giteapc: depends=Lephenixnoir/fxsdk
|
||||
|
||||
PREFIX ?= $(GITEAPC_PREFIX)
|
||||
VERSION = 2.39
|
||||
VERSION = 2.42
|
||||
|
||||
-include giteapc-config.make
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue