diff options
| author | Nils Wallménius <nils@rockbox.org> | 2011-01-06 23:51:15 +0000 |
|---|---|---|
| committer | Nils Wallménius <nils@rockbox.org> | 2011-01-06 23:51:15 +0000 |
| commit | daa3c36248d6dc1f2d1f529870a29a4fcf77b110 (patch) | |
| tree | 97cdd55652973b67d08616a23ab0180bfac5e04b | |
| parent | ff4749b4b3b33275d73d5c86008c7ee5a2da7a5a (diff) | |
| download | rockbox-daa3c36248d6dc1f2d1f529870a29a4fcf77b110.zip rockbox-daa3c36248d6dc1f2d1f529870a29a4fcf77b110.tar.gz rockbox-daa3c36248d6dc1f2d1f529870a29a4fcf77b110.tar.bz2 rockbox-daa3c36248d6dc1f2d1f529870a29a4fcf77b110.tar.xz | |
rockboxdev.sh: Hardcode gcc mirror for now as the gnu mirrors have a different dir layout and are missing the infrastructure dir which was the whole reason for the switch. Fix spurious trailing slash
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28981 a1c6a512-1295-4272-9138-f99709370657
| -rwxr-xr-x | tools/rockboxdev.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/rockboxdev.sh b/tools/rockboxdev.sh index 6909cf1..ce3e193 100755 --- a/tools/rockboxdev.sh +++ b/tools/rockboxdev.sh @@ -30,7 +30,7 @@ else fi if [ -z $GNU_MIRROR ] ; then - GNU_MIRROR=ftpmirror.gnu.org + GNU_MIRROR=ftp://gcc.gnu.org/pub fi # These are the tools this script requires and depends upon. @@ -107,7 +107,7 @@ build() { binutils) file="binutils-$version.tar.bz2" - url="$GNU_MIRROR/binutils/releases/" + url="$GNU_MIRROR/binutils/releases" ;; *) |