diff options
author | Alexey Neyman <stilor@att.net> | 2017-07-09 23:08:12 -0700 |
---|---|---|
committer | Alexey Neyman <stilor@att.net> | 2017-07-09 23:08:12 -0700 |
commit | fd522eed500576a6e62431724314858e120679c6 (patch) | |
tree | 7868fa7f06af8a35ef9de54544fa55658482cd09 /scripts/functions | |
parent | 64d5c254c7ea6b0e8dbccd01cafaa8d8d1aa3906 (diff) | |
download | crosstool-ng-fd522eed500576a6e62431724314858e120679c6.tar.gz crosstool-ng-fd522eed500576a6e62431724314858e120679c6.tar.bz2 crosstool-ng-fd522eed500576a6e62431724314858e120679c6.zip |
Resolve a few more TBDs
Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'scripts/functions')
-rw-r--r-- | scripts/functions | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/scripts/functions b/scripts/functions index a7dd5412..79b7321b 100644 --- a/scripts/functions +++ b/scripts/functions @@ -1460,10 +1460,9 @@ CT_Mirrors() echo "ftp://ftp.gnu.org/gnu/${project}" ;; sourceware) - local subdir="${3:+/${3}}" - echo "ftp://sourceware.org/pub/${project}/releases${subdir}" - echo "http://mirrors.kernel.org/sourceware/${project}/releases${subdir}" - echo "http://gcc.gnu.org/pub/${project}/releases${subdir}" + echo "ftp://sourceware.org/pub/${project}" + echo "http://mirrors.kernel.org/sourceware/${project}" + echo "http://gcc.gnu.org/pub/${project}" ;; Linaro) eval "local version=\"\${${3}}\"" |