From b6d744ad1885a0a7d102b1d9f4f67bdb171ab203 Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Fri, 2 Mar 2012 14:57:28 -0800 Subject: eglibc-testing: Fix testing script to work well with dash Dash did not like >& so we do 2 >& 1 > /dev/null (From OE-Core rev: 06c783e2d6f4e3b316b230565b28d9e4c535c31b) Signed-off-by: Khem Raj Signed-off-by: Richard Purdie --- meta/recipes-core/eglibc/eglibc-testing.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta/recipes-core/eglibc') diff --git a/meta/recipes-core/eglibc/eglibc-testing.inc b/meta/recipes-core/eglibc/eglibc-testing.inc index c30409fb94..a5ce773bfc 100644 --- a/meta/recipes-core/eglibc/eglibc-testing.inc +++ b/meta/recipes-core/eglibc/eglibc-testing.inc @@ -47,7 +47,7 @@ then echo "Please specify the target machine and remote user in form of user@target" exit 1; fi -ssh \$target ls \$PWD\ >& /dev/null +ssh \$target ls \$PWD\ 2>&1 > /dev/null if [ "x\$?" != "x0" ] then echo "Failed connecting to \$target it could be because of:" -- cgit v1.2.3-54-g00ecf