scripts/build/debug/100-dmalloc.sh
changeset 669 ca740b4c4262
parent 523 010f6f4e4dd6
child 857 d72e65fe38d4
     1.1 --- a/scripts/build/debug/100-dmalloc.sh	Tue May 20 21:32:39 2008 +0000
     1.2 +++ b/scripts/build/debug/100-dmalloc.sh	Mon Jul 14 21:57:57 2008 +0000
     1.3 @@ -40,19 +40,19 @@
     1.4  
     1.5      LD="${CT_TARGET}-ld"                                        \
     1.6      AR="${CT_TARGET}-ar"                                        \
     1.7 +    CT_DoExecLog ALL                                            \
     1.8      "${CT_SRC_DIR}/dmalloc-${CT_DMALLOC_VERSION}/configure"     \
     1.9          --prefix=/usr                                           \
    1.10          --build="${CT_BUILD}"                                   \
    1.11          --host="${CT_TARGET}"                                   \
    1.12 -        ${extra_config}                                         2>&1 |CT_DoLog ALL
    1.13 +        ${extra_config}
    1.14  
    1.15      CT_DoLog EXTRA "Building dmalloc"
    1.16 -    make 2>&1 |CT_DoLog ALL
    1.17 +    CT_DoExecLog ALL make 2>&1 |CT_DoLog ALL
    1.18  
    1.19      CT_DoLog EXTRA "Installing dmalloc"
    1.20 -    make DESTDIR="${CT_SYSROOT_DIR}"       installincs      \
    1.21 -                                           installlib       2>&1 |CT_DoLog ALL
    1.22 -    make DESTDIR="${CT_DEBUG_INSTALL_DIR}" installutil      2>&1 |CT_DoLog ALL
    1.23 +    CT_DoExecLog ALL make DESTDIR="${CT_SYSROOT_DIR}" installincs installlib
    1.24 +    CT_DoExecLog ALL make DESTDIR="${CT_DEBUG_INSTALL_DIR}" installutil
    1.25  
    1.26      CT_EndStep
    1.27  }