aboutsummaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorDarren Hart <dvhart@linux.intel.com>2014-09-26 19:04:31 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-09-29 17:49:10 +0100
commitf0566e127abc7bb90588b2a8bee12ad3e7d35b3e (patch)
tree4da2014845bfb257b689dca6a4b8117e232d56a8 /meta/classes
parent1854d6c2e6dda4fd6900399d827413fcc1e1aef6 (diff)
downloadopenembedded-core-contrib-f0566e127abc7bb90588b2a8bee12ad3e7d35b3e.tar.gz
kernel-yocto.bbclass: Fixup shell condition test syntax error
A warning is issued when run about an unexpected operator due to a syntax error with an extra if empedded in the shell conditional. Remove the extra if. Signed-off-by: Darren Hart <dvhart@linux.intel.com> Cc: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/kernel-yocto.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/kernel-yocto.bbclass b/meta/classes/kernel-yocto.bbclass
index 929d64a290..7718f9ab1b 100644
--- a/meta/classes/kernel-yocto.bbclass
+++ b/meta/classes/kernel-yocto.bbclass
@@ -296,7 +296,7 @@ do_validate_branches() {
force_srcrev="${SRCREV}"
else
git cat-file -t ${machine_srcrev} > /dev/null
- if [ if $? -ne 0 ]; then
+ if [ $? -ne 0 ]; then
bberror "${machine_srcrev} is not a valid commit ID."
bbfatal "The kernel source tree may be out of sync"
fi