summaryrefslogtreecommitdiff
path: root/scripts/build/debug
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2017-01-23 20:29:44 (GMT)
committerAlexey Neyman <stilor@att.net>2017-01-26 20:19:49 (GMT)
commit3fc7c1ef69eba2a0f9bd108492a8b3ed4d42347c (patch)
tree7d088d46ab84af5107fb9f493c516b640390eb0d /scripts/build/debug
parent42c9f031dd0c65304d844e63c4e4398f40b4d7e3 (diff)
Fix handling of ltrace 0.5.3 peculiarity.
Also, remove 0.5.2 selection - no longer available for download. Signed-off-by: Alexey Neyman <stilor@att.net>
Diffstat (limited to 'scripts/build/debug')
-rw-r--r--scripts/build/debug/400-ltrace.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/scripts/build/debug/400-ltrace.sh b/scripts/build/debug/400-ltrace.sh
index 2926876..6b860e9 100644
--- a/scripts/build/debug/400-ltrace.sh
+++ b/scripts/build/debug/400-ltrace.sh
@@ -27,8 +27,9 @@ do_debug_ltrace_build() {
CT_Pushd "${CT_BUILD_DIR}/build-ltrace"
CT_DoLog EXTRA "Configuring ltrace"
- # ltrace-0.5.3, and later, don't use GNU Autotools configure script anymore
- if [ "${CT_LTRACE_0_5_3_or_later}" = "y" ]; then
+ # ltrace-0.5.3 has a unique hand-crafted configure script. Releases
+ # 0.5.2 and earlier as well as 0.6.0 and later use GNU autotools.
+ if [ "${LTRACE_0_5_3_CONFIGURE}" = "y" ]; then
case "${CT_ARCH}:${CT_ARCH_BITNESS}" in
x86:32) ltrace_host="i386";;
x86:64) ltrace_host="x86_64";;