From 2325739f662c6eb55420aab20b12c0666cf6f496 Mon Sep 17 00:00:00 2001 From: David Bagonyi Date: Wed, 1 Feb 2023 15:55:37 +0000 Subject: concurrencykit: Make patch compatible with Bourne shell The use of `>&` assumes we are using a shell that supports this syntax. In case of running this through `sh`, we get "Syntax error: Bad fd number" Signed-off-by: Khem Raj --- .../0001-configure-Fix-compoiler-detection-logic-for-cross-co.patch | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'meta-oe/recipes-devtools/concurrencykit') diff --git a/meta-oe/recipes-devtools/concurrencykit/concurrencykit/0001-configure-Fix-compoiler-detection-logic-for-cross-co.patch b/meta-oe/recipes-devtools/concurrencykit/concurrencykit/0001-configure-Fix-compoiler-detection-logic-for-cross-co.patch index 6be0246626..718f8c19f1 100644 --- a/meta-oe/recipes-devtools/concurrencykit/concurrencykit/0001-configure-Fix-compoiler-detection-logic-for-cross-co.patch +++ b/meta-oe/recipes-devtools/concurrencykit/concurrencykit/0001-configure-Fix-compoiler-detection-logic-for-cross-co.patch @@ -35,9 +35,9 @@ Signed-off-by: Khem Raj + fi + assert "$CC" "not found" +fi -+if `$CC --version | grep gcc >& /dev/null`; then ++if `$CC --version | grep gcc > /dev/null 2>&1`; then + COMPILER=gcc -+elif `$CC --version | grep clang >& /dev/null`; then ++elif `$CC --version | grep clang > /dev/null 2>&1`; then + COMPILER=clang +else + COMPILER="not-found" -- cgit v1.2.3-54-g00ecf