diff options
author | Yann E. MORIN" <yann.morin.1998@free.fr> | 2014-05-11 15:43:28 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@free.fr> | 2014-05-11 15:43:28 +0200 |
commit | 04a7340d0af9e1202fabba94e1391298435cadd0 (patch) | |
tree | 0365f8fd346790f735daac7561e4cb35ce113270 /scripts/build/binutils/binutils.sh | |
parent | e2d2b2ae115c391fdea16b9a7117cc191c97ecfa (diff) | |
download | crosstool-ng-04a7340d0af9e1202fabba94e1391298435cadd0.tar.gz crosstool-ng-04a7340d0af9e1202fabba94e1391298435cadd0.tar.bz2 crosstool-ng-04a7340d0af9e1202fabba94e1391298435cadd0.zip |
binutils/elf2flt: use alternate mirror
The official elf2flt upstream has disapeared.
Switch to a mirror.
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Diffstat (limited to 'scripts/build/binutils/binutils.sh')
-rw-r--r-- | scripts/build/binutils/binutils.sh | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/scripts/build/binutils/binutils.sh b/scripts/build/binutils/binutils.sh index 4a052ad8..b74d28d7 100644 --- a/scripts/build/binutils/binutils.sh +++ b/scripts/build/binutils/binutils.sh @@ -14,11 +14,7 @@ do_binutils_get() { fi if [ -n "${CT_ARCH_BINFMT_FLAT}" ]; then - CT_GetCVS "elf2flt-${CT_ELF2FLT_VERSION}" \ - ":pserver:anonymous@cvs.uclinux.org:/var/cvs" \ - "elf2flt" \ - "" \ - "elf2flt-${CT_ELF2FLT_VERSION}" + CT_GetGit elf2flt "${CT_ELF2FLT_GIT_CSET}" git://wh0rd.org/elf2flt.git fi } @@ -34,8 +30,8 @@ do_binutils_extract() { CT_Patch "binutils" "${CT_BINUTILS_VERSION}" if [ -n "${CT_ARCH_BINFMT_FLAT}" ]; then - CT_Extract "elf2flt-${CT_ELF2FLT_VERSION}" - CT_Patch "elf2flt" "${CT_ELF2FLT_VERSION}" + CT_Extract "elf2flt-${CT_ELF2FLT_GIT_CSET}" + CT_Patch "elf2flt" "${CT_ELF2FLT_GIT_CSET}" fi } |