summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/lsb/lsbtest
diff options
context:
space:
mode:
authorStefan Stanacar <stefanx.stanacar@intel.com>2014-03-12 18:59:28 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-03-13 15:38:08 -0700
commit023c35795ff8edd79bb27848a01dd49239f052d4 (patch)
tree2c97a436c08eeccfe230b09522f56eb903fcbd50 /meta/recipes-extended/lsb/lsbtest
parent8d326e6728b7a6dceb683e610a0b81c5e4933747 (diff)
downloadpoky-023c35795ff8edd79bb27848a01dd49239f052d4.tar.gz
lsbtest: fix comparison bashism
== is a bashism use = instead. (Based on OE-Core master rev: c90d1047c41148cbd57f26b5a34563346602a71b) (From OE-Core rev: 9981f760ac890d01a07db8faa24ceee2bea78b62) 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')
-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 af1d61c0ce..cea01990e1 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}