From: Paul Eggleton Date: Mon, 1 Dec 2014 17:20:30 +0000 (+0000) Subject: kernel-yocto.bbclass: fix shell syntax error X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=47f6432dbc4e5315bed15e073c4b1359c181d227;p=openembedded-core.git kernel-yocto.bbclass: fix shell syntax error Spaces aren't valid around = in an assignment statement (not even with bash). (From OE-Core rev: fb419b1a3f5dbc5e5019be9d09c4acdbeb460c19) Signed-off-by: Paul Eggleton Signed-off-by: Ross Burton Signed-off-by: Richard Purdie Signed-off-by: Armin Kuster --- diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass index 7718f9ab1b..f42a5c2534 100644 --- a/meta/classes/kernel-yocto.bbclass +++ b/meta/classes/kernel-yocto.bbclass @@ -212,7 +212,7 @@ do_kernel_checkout() { machine_branch="${@ get_machine_branch(d, "${KBRANCH}" )}" git show-ref --quiet --verify -- "refs/heads/${machine_branch}" if [ $? -eq 0 ]; then - machine_branch = "master" + machine_branch="master" fi # checkout and clobber any unimportant files