summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYann E. MORIN" <yann.morin.1998@free.fr>2013-01-06 11:08:33 (GMT)
committerYann E. MORIN" <yann.morin.1998@free.fr>2013-01-06 11:08:33 (GMT)
commit188d166ce3d7188eed91ea0d9e69b6d1f2a8ecf2 (patch)
tree38fed62c5c571900562b61c8f402474b4c1449d8
parent114e6eb14756bb31310349976e74660b45033a0b (diff)
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>
-rw-r--r--scripts/showTuple.sh.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/showTuple.sh.in b/scripts/showTuple.sh.in
index 074e550..5389539 100644
--- a/scripts/showTuple.sh.in
+++ b/scripts/showTuple.sh.in
@@ -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 @@ rm -f "${tmp_log_file}"
CT_DoBuildTargetTuple
# All this for this single echo... :-( Sigh, I'll have to re-arrange things...
-echo "${CT_TARGET}" >&7
+echo "${CT_TARGET}" >&9