From: Cliff Brake Date: Tue, 2 Oct 2007 18:18:47 +0000 (+0000) Subject: linux.inc: replace == with = to make posix shell compliant X-Git-Tag: Release-2010-05/1~8549^2~1^2~128^2~11^2~23 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1f1297df3c3822b2c5c6682c990ce7fac5183117;p=openembedded.git linux.inc: replace == with = to make posix shell compliant --- diff --git a/packages/linux/linux.inc b/packages/linux/linux.inc index 7579481005..41b0c13179 100644 --- a/packages/linux/linux.inc +++ b/packages/linux/linux.inc @@ -40,7 +40,7 @@ do_configure_prepend() { # # oabi / eabi support # - if [ "${TARGET_OS}" == "linux-gnueabi" -o "${TARGET_OS}" == "linux-uclibcgnueabi" ]; then + if [ "${TARGET_OS}" = "linux-gnueabi" -o "${TARGET_OS}" = "linux-uclibcgnueabi" ]; then echo "CONFIG_AEABI=y" >> ${S}/.config echo "CONFIG_OABI_COMPAT=y" >> ${S}/.config else