From: Cliff Brake Date: Thu, 28 Jun 2007 12:41:18 +0000 (+0000) Subject: uclibc: fix string comparison ops in do_configure script. X-Git-Tag: Release-2010-05/1~8868^2~268^2~12^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d65e22a1a6b229985413ec429d04fd964fc8ba9c;p=openembedded.git uclibc: fix string comparison ops in do_configure script. String comparison in shell is '=', not '==' --- diff --git a/packages/uclibc/uclibc.inc b/packages/uclibc/uclibc.inc index bae3f2d042..ca6613d315 100644 --- a/packages/uclibc/uclibc.inc +++ b/packages/uclibc/uclibc.inc @@ -128,7 +128,7 @@ do_configure() { sed -i -e '/CONFIG_ARM_EABI/d' ${S}/.config - if [ "${TARGET_OS}" == "linux-gnueabi" -o "${TARGET_OS}" == "linux-uclibcgnueabi" ]; then + if [ "${TARGET_OS}" = "linux-gnueabi" -o "${TARGET_OS}" = "linux-uclibcgnueabi" ]; then echo "CONFIG_ARM_EABI=y" >> ${S}/.config else echo "# CONFIG_ARM_EABI is not set" >> ${S}/.config