From: Vincent Génieux Date: Mon, 12 Jan 2015 22:10:01 +0000 (+0100) Subject: fix '[[: not found' error message using dash X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=574f27be14a0f0be6a96e097903704c3492620a7;p=openembedded-core.git fix '[[: not found' error message using dash Remove bash specific syntax '[[ test ]]' replaced with '[ test ]'. Fixes [YOCTO #7112] (From OE-Core rev: f2ff849d5936d3dc5e24301e0620da265df50fea) Signed-off-by: Vincent Génieux Signed-off-by: Ross Burton Signed-off-by: Richard Purdie Signed-off-by: Armin Kuster --- diff --git a/meta/classes/kernel.bbclass b/meta/classes/kernel.bbclass index 70ed95bbe0..2a6ec34c36 100644 --- a/meta/classes/kernel.bbclass +++ b/meta/classes/kernel.bbclass @@ -403,7 +403,7 @@ do_strip() { gawk '{print $1}'` for str in ${KERNEL_IMAGE_STRIP_EXTRA_SECTIONS}; do { - if [[ "$headers" != *"$str"* ]]; then + if [ "$headers" != *"$str"* ]; then bbwarn "Section not found: $str"; fi