summaryrefslogtreecommitdiff
path: root/scripts/build/debug/100-dmalloc.sh
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-07-14 21:57:57 (GMT)
committerYann E. MORIN" <yann.morin.1998@anciens.enib.fr>2008-07-14 21:57:57 (GMT)
commit6e1b1ccb7d5993346292b7ecd4293ef1719f683c (patch)
tree0f7221bd11ed24f37ad92a3952261e50bece2973 /scripts/build/debug/100-dmalloc.sh
parente377769fb19a01b03e0205960b74f4b2b87793b1 (diff)
Use CT_DoExecLog when building tools and debug utilities.
/trunk/scripts/build/tools/200-sstrip.sh | 12 6 6 0 ++++++------ /trunk/scripts/build/debug/100-dmalloc.sh | 10 5 5 0 +++++----- /trunk/scripts/build/debug/400-ltrace.sh | 5 3 2 0 +++-- /trunk/scripts/build/debug/300-gdb.sh | 30 17 13 0 +++++++++++++++++------------- /trunk/scripts/build/debug/500-strace.sh | 7 4 3 0 ++++--- /trunk/scripts/build/debug/200-duma.sh | 5 3 2 0 +++-- 6 files changed, 38 insertions(+), 31 deletions(-)
Diffstat (limited to 'scripts/build/debug/100-dmalloc.sh')
-rw-r--r--scripts/build/debug/100-dmalloc.sh10
1 files changed, 5 insertions, 5 deletions
diff --git a/scripts/build/debug/100-dmalloc.sh b/scripts/build/debug/100-dmalloc.sh
index 46dd728..463c4c4 100644
--- a/scripts/build/debug/100-dmalloc.sh
+++ b/scripts/build/debug/100-dmalloc.sh
@@ -40,19 +40,19 @@ do_debug_dmalloc_build() {
LD="${CT_TARGET}-ld" \
AR="${CT_TARGET}-ar" \
+ CT_DoExecLog ALL \
"${CT_SRC_DIR}/dmalloc-${CT_DMALLOC_VERSION}/configure" \
--prefix=/usr \
--build="${CT_BUILD}" \
--host="${CT_TARGET}" \
- ${extra_config} 2>&1 |CT_DoLog ALL
+ ${extra_config}
CT_DoLog EXTRA "Building dmalloc"
- make 2>&1 |CT_DoLog ALL
+ CT_DoExecLog ALL make 2>&1 |CT_DoLog ALL
CT_DoLog EXTRA "Installing dmalloc"
- make DESTDIR="${CT_SYSROOT_DIR}" installincs \
- installlib 2>&1 |CT_DoLog ALL
- make DESTDIR="${CT_DEBUG_INSTALL_DIR}" installutil 2>&1 |CT_DoLog ALL
+ CT_DoExecLog ALL make DESTDIR="${CT_SYSROOT_DIR}" installincs installlib
+ CT_DoExecLog ALL make DESTDIR="${CT_DEBUG_INSTALL_DIR}" installutil
CT_EndStep
}