debug/strace: fix download URL 1.13
author"Yann E. MORIN" <yann.morin.1998@free.fr>
Mon Mar 12 21:19:26 2012 +0100 (2012-03-12)
branch1.13
changeset 2913ce1a9c264de5
parent 2912 6467c949c91c
child 2958 f50031dbcf9a
debug/strace: fix download URL

strace upstream location has slightly changed.

Reported-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
(transplanted from cc170c96362c5e12d407558042f6fc17ead43f75)
scripts/build/debug/500-strace.sh
     1.1 --- a/scripts/build/debug/500-strace.sh	Tue Mar 06 21:36:10 2012 +0100
     1.2 +++ b/scripts/build/debug/500-strace.sh	Mon Mar 12 21:19:26 2012 +0100
     1.3 @@ -1,7 +1,8 @@
     1.4  # Build script for strace
     1.5  
     1.6  do_debug_strace_get() {
     1.7 -    CT_GetFile "strace-${CT_STRACE_VERSION}" http://kent.dl.sourceforge.net/sourceforge/strace/
     1.8 +    local base_url="http://kent.dl.sourceforge.net/project/strace/strace"
     1.9 +    CT_GetFile "strace-${CT_STRACE_VERSION}" "${base_url}/${CT_STRACE_VERSION}"
    1.10      # Downloading from sourceforge leaves garbage, cleanup
    1.11      CT_DoExecLog ALL rm -f "${CT_TARBALLS_DIR}/showfiles.php"*
    1.12  }