# HG changeset patch # User "Yann E. MORIN" # Date 1357470513 -3600 # Node ID d8bd172487895ad2154c33fd9186318124f7a629 # Parent d9e78e89b3f67db245a5690e139679d7efa3102c 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" diff -r d9e78e89b3f6 -r d8bd17248789 scripts/showTuple.sh.in --- a/scripts/showTuple.sh.in Sun Dec 23 14:32:20 2012 +0100 +++ b/scripts/showTuple.sh.in Sun Jan 06 12:08:33 2013 +0100 @@ -7,7 +7,7 @@ . "${CT_LIB_DIR}/paths.sh" # We'll need the stdout later, save it -exec 7>&1 +exec 9>&1 # Parse the common functions . "${CT_LIB_DIR}/scripts/functions" @@ -27,4 +27,4 @@ CT_DoBuildTargetTuple # All this for this single echo... :-( Sigh, I'll have to re-arrange things... -echo "${CT_TARGET}" >&7 +echo "${CT_TARGET}" >&9