diff options
author | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-11-16 10:00:27 +0100 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@anciens.enib.fr> | 2010-11-16 10:00:27 +0100 |
commit | 9dbbc8e5f6edf0e1386b4ba28d96918fa64fa2b5 (patch) | |
tree | 0d6ee9d1137680932d452a63120722a89793c3be /scripts/build/libc/newlib.sh | |
parent | 25953c386f8a4ca580bbe7c09e95d18492424c1d (diff) | |
download | crosstool-ng-9dbbc8e5f6edf0e1386b4ba28d96918fa64fa2b5.tar.gz crosstool-ng-9dbbc8e5f6edf0e1386b4ba28d96918fa64fa2b5.tar.bz2 crosstool-ng-9dbbc8e5f6edf0e1386b4ba28d96918fa64fa2b5.zip |
scripts: remove aria2c as downloader, retain only curl and wget
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Diffstat (limited to 'scripts/build/libc/newlib.sh')
-rw-r--r-- | scripts/build/libc/newlib.sh | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/scripts/build/libc/newlib.sh b/scripts/build/libc/newlib.sh index 0593a663..590c5eb1 100644 --- a/scripts/build/libc/newlib.sh +++ b/scripts/build/libc/newlib.sh @@ -16,14 +16,10 @@ libc_newlib_version() { do_libc_get() { local libc_src local avr32headers_src - local save_chunks libc_src="ftp://sources.redhat.com/pub/newlib" avr32headers_src="http://dev.doredevelopment.dk/avr32-toolchain/sources" - save_chunks="${CT_DOWNLOAD_MAX_CHUNKS}" - CT_DOWNLOAD_MAX_CHUNKS=1 - if [ -z "${CT_LIBC_NEWLIB_CVS}" ]; then CT_GetFile "newlib-${CT_LIBC_VERSION}" ${libc_src} else @@ -37,8 +33,6 @@ do_libc_get() { if [ "${CT_ATMEL_AVR32_HEADERS}" = "y" ]; then CT_GetFile "avr32headers" ${avr32headers_src} fi - - CT_DOWNLOAD_MAX_CHUNKS="${save_chunks}" } do_libc_extract() { |