Redirect the strace build messages to the logger!
author"Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Sat Jul 14 16:41:03 2007 +0000 (2007-07-14)
changeset 25528bc219f3fb4
parent 254 e525ec498b58
child 256 97c14281a40c
Redirect the strace build messages to the logger!
scripts/build/debug/strace.sh
     1.1 --- a/scripts/build/debug/strace.sh	Sat Jul 14 13:09:51 2007 +0000
     1.2 +++ b/scripts/build/debug/strace.sh	Sat Jul 14 16:41:03 2007 +0000
     1.3 @@ -24,13 +24,13 @@
     1.4      "${CT_SRC_DIR}/strace-${CT_STRACE_VERSION}/configure"   \
     1.5          --build=${CT_BUILD}                                 \
     1.6          --host=${CT_TARGET}                                 \
     1.7 -        --prefix=/usr
     1.8 +        --prefix=/usr                                       2>&1 |CT_DoLog ALL
     1.9  
    1.10      CT_DoLog EXTRA "Building strace"
    1.11 -    make
    1.12 +    make    2>&1 |CT_DoLog ALL
    1.13  
    1.14      CT_DoLog EXTRA "Installing strace"
    1.15 -    make DESTDIR="${CT_DEBUG_INSTALL_DIR}" install
    1.16 +    make DESTDIR="${CT_DEBUG_INSTALL_DIR}" install  2>&1 |CT_DoLog ALL
    1.17  
    1.18      CT_Popd
    1.19      CT_EndStep