summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/lsb/lsbtest/LSB_Test.sh
diff options
context:
space:
mode:
authorStefan Stanacar <stefanx.stanacar@intel.com>2014-03-11 15:40:09 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-03-13 15:37:36 -0700
commitb95c05db58b3a2d1c3eb1a168f4abb851d3e69ca (patch)
tree627dbefc4adeea3d76fc26fd3c0de2dd7cadc26f /meta/recipes-extended/lsb/lsbtest/LSB_Test.sh
parent5152260a32bd297d6ec91ea37474e44dd3c2f3da (diff)
downloadpoky-b95c05db58b3a2d1c3eb1a168f4abb851d3e69ca.tar.gz
lsbtest: fix comparison bashism
== is a bashism use = instead. (Based on OE-Core master rev: c90d1047c41148cbd57f26b5a34563346602a71b) (From OE-Core rev: abf46d03eff2288715b054057ac253eca61f8a63) Signed-off-by: Stefan Stanacar <stefanx.stanacar@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/lsb/lsbtest/LSB_Test.sh')
-rw-r--r--meta/recipes-extended/lsb/lsbtest/LSB_Test.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-extended/lsb/lsbtest/LSB_Test.sh b/meta/recipes-extended/lsb/lsbtest/LSB_Test.sh
index f14f485285..e91df5f9d0 100644
--- a/meta/recipes-extended/lsb/lsbtest/LSB_Test.sh
+++ b/meta/recipes-extended/lsb/lsbtest/LSB_Test.sh
@@ -272,7 +272,7 @@ then
272fi 272fi
273 273
274if ! `grep -F -q "noarch-suse" ${PLATFORM_FILE}`; then 274if ! `grep -F -q "noarch-suse" ${PLATFORM_FILE}`; then
275 if [ ${ARCH} == i686 ];then 275 if [ ${ARCH} = i686 ];then
276 echo "i486-suse" >> ${PLATFORM_FILE} 276 echo "i486-suse" >> ${PLATFORM_FILE}
277 echo "i486-noarch" >> ${PLATFORM_FILE} 277 echo "i486-noarch" >> ${PLATFORM_FILE}
278 echo "i486-pc" >> ${PLATFORM_FILE} 278 echo "i486-pc" >> ${PLATFORM_FILE}