linux.inc: replace == with = to make posix shell compliant
authorCliff Brake <cbrake@bec-systems.com>
Tue, 2 Oct 2007 18:18:47 +0000 (18:18 +0000)
committerCliff Brake <cbrake@bec-systems.com>
Tue, 2 Oct 2007 18:18:47 +0000 (18:18 +0000)
packages/linux/linux.inc

index 7579481..41b0c13 100644 (file)
@@ -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