diff options
author | Paul Eggleton <paul.eggleton@linux.intel.com> | 2014-12-01 17:20:30 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2014-12-05 18:01:05 +0000 |
commit | 8ad1d1d6f61d07971138b131559c13fb9c1c2d46 (patch) | |
tree | e01551c585b79d129321b040b6627a3d562e0f25 | |
parent | 7d59e192ec9c5d42cf5d998c61e248b8eef4e709 (diff) | |
download | poky-8ad1d1d6f61d07971138b131559c13fb9c1c2d46.tar.gz |
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 <paul.eggleton@linux.intel.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/classes/kernel-yocto.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass index e672a0e3a5..c3e24943bb 100644 --- a/meta/classes/kernel-yocto.bbclass +++ b/meta/classes/kernel-yocto.bbclass | |||
@@ -212,7 +212,7 @@ do_kernel_checkout() { | |||
212 | machine_branch="${@ get_machine_branch(d, "${KBRANCH}" )}" | 212 | machine_branch="${@ get_machine_branch(d, "${KBRANCH}" )}" |
213 | git show-ref --quiet --verify -- "refs/heads/${machine_branch}" | 213 | git show-ref --quiet --verify -- "refs/heads/${machine_branch}" |
214 | if [ $? -eq 0 ]; then | 214 | if [ $? -eq 0 ]; then |
215 | machine_branch = "master" | 215 | machine_branch="master" |
216 | fi | 216 | fi |
217 | 217 | ||
218 | # checkout and clobber any unimportant files | 218 | # checkout and clobber any unimportant files |