summaryrefslogtreecommitdiff
path: root/scripts/build/debug
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@free.fr>2012-03-12 20:19:26 (GMT)
committerYann E. MORIN" <yann.morin.1998@free.fr>2012-03-12 20:19:26 (GMT)
commitc427fcce6b2ec525f64d307006ef2d96c28b4e1e (patch)
treeccd08cfe922250056521c82e971e5ea6ce324b5d /scripts/build/debug
parente54d71321ed6ac8b908bfb47122b0b7ac9f9a355 (diff)
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>
Diffstat (limited to 'scripts/build/debug')
-rw-r--r--scripts/build/debug/500-strace.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/build/debug/500-strace.sh b/scripts/build/debug/500-strace.sh
index 38eaf88..f0cfe7f 100644
--- a/scripts/build/debug/500-strace.sh
+++ b/scripts/build/debug/500-strace.sh
@@ -1,7 +1,8 @@
# Build script for strace
do_debug_strace_get() {
- CT_GetFile "strace-${CT_STRACE_VERSION}" http://kent.dl.sourceforge.net/sourceforge/strace/
+ local base_url="http://kent.dl.sourceforge.net/project/strace/strace"
+ CT_GetFile "strace-${CT_STRACE_VERSION}" "${base_url}/${CT_STRACE_VERSION}"
# Downloading from sourceforge leaves garbage, cleanup
CT_DoExecLog ALL rm -f "${CT_TARBALLS_DIR}/showfiles.php"*
}