scripts/showTuple: fix stdout
author"Yann E. MORIN" <yann.morin.1998@free.fr>
Sun Jan 06 12:08:33 2013 +0100 (2013-01-06)
changeset 3141d8bd17248789
parent 3140 d9e78e89b3f6
child 3142 6569f6a9060c
scripts/showTuple: fix stdout

Since we've had the debug shell feature, fd #7 is now used to
redirect stderr, while it was previously unused.

Use fd #9 to redirect stdout.

Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
scripts/showTuple.sh.in
     1.1 --- a/scripts/showTuple.sh.in	Sun Dec 23 14:32:20 2012 +0100
     1.2 +++ b/scripts/showTuple.sh.in	Sun Jan 06 12:08:33 2013 +0100
     1.3 @@ -7,7 +7,7 @@
     1.4  . "${CT_LIB_DIR}/paths.sh"
     1.5  
     1.6  # We'll need the stdout later, save it
     1.7 -exec 7>&1
     1.8 +exec 9>&1
     1.9  
    1.10  # Parse the common functions
    1.11  . "${CT_LIB_DIR}/scripts/functions"
    1.12 @@ -27,4 +27,4 @@
    1.13  CT_DoBuildTargetTuple
    1.14  
    1.15  # All this for this single echo... :-( Sigh, I'll have to re-arrange things...
    1.16 -echo "${CT_TARGET}" >&7
    1.17 +echo "${CT_TARGET}" >&9