diff options
author | Yann E. MORIN" <yann.morin.1998@free.fr> | 2012-06-10 23:51:40 +0200 |
---|---|---|
committer | Yann E. MORIN" <yann.morin.1998@free.fr> | 2012-06-10 23:51:40 +0200 |
commit | d257c9901a08915b0df886e2ec055a94a404e70a (patch) | |
tree | da42dbe7075bfafbf434bd15a3223e960d4f5ee7 | |
parent | d25ef222d9d7a9265b3751f38ffd613fd3ef9435 (diff) | |
download | crosstool-ng-d257c9901a08915b0df886e2ec055a94a404e70a.tar.gz crosstool-ng-d257c9901a08915b0df886e2ec055a94a404e70a.tar.bz2 crosstool-ng-d257c9901a08915b0df886e2ec055a94a404e70a.zip |
debug/duma: fix download url
Sourceforge has again changed its mirroring system... :-(
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
(transplanted from e31a3bfdf8632635f61fd2069de6bf2b3df79621)
-rw-r--r-- | scripts/build/debug/200-duma.sh | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/scripts/build/debug/200-duma.sh b/scripts/build/debug/200-duma.sh index b46c0f16..99ff6aa3 100644 --- a/scripts/build/debug/200-duma.sh +++ b/scripts/build/debug/200-duma.sh @@ -1,10 +1,15 @@ # Build script for D.U.M.A. do_debug_duma_get() { + local dl_base + + dl_base="http://dfn.dl.sourceforge.net/project/duma/duma" + dl_base+="/${CT_DUMA_VERSION//_/.}" + # Downloading an non-existing file from sourceforge will give you an # HTML file containing an error message, instead of returning a 404. # Sigh... - CT_GetFile "duma_${CT_DUMA_VERSION}" .tar.gz http://kent.dl.sourceforge.net/sourceforge/duma/ + CT_GetFile "duma_${CT_DUMA_VERSION}" .tar.gz "${dl_base}" # Downloading from sourceforge may leave garbage, cleanup CT_DoExecLog ALL rm -f "${CT_TARBALLS_DIR}/showfiles.php"* } |