From: Andreas Oberritter Date: Tue, 26 Oct 2010 15:43:06 +0000 (+0000) Subject: lmbench: fix sh equality operator X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=00950ff2ed1f5cffb3a3ea6acbbc1d0a27f761a4;p=openembedded.git lmbench: fix sh equality operator Signed-off-by: Andreas Oberritter Acked-by: Michael Smith --- diff --git a/recipes/lmbench/lmbench_2.0.4.bb b/recipes/lmbench/lmbench_2.0.4.bb index 50a5377428..c1707df285 100644 --- a/recipes/lmbench/lmbench_2.0.4.bb +++ b/recipes/lmbench/lmbench_2.0.4.bb @@ -32,7 +32,7 @@ do_configure() { do_compile () { . ${CONFIG_SITE} - if [ X"$ac_cv_uint" == X"yes" ]; then + if [ X"$ac_cv_uint" = X"yes" ]; then CFLAGS="${CFLAGS} -DHAVE_uint" fi install -d ${S}/bin/${TARGET_SYS} diff --git a/recipes/lmbench/lmbench_2.5.bb b/recipes/lmbench/lmbench_2.5.bb index de7fc484ad..ca55602a9b 100644 --- a/recipes/lmbench/lmbench_2.5.bb +++ b/recipes/lmbench/lmbench_2.5.bb @@ -32,7 +32,7 @@ do_configure() { do_compile () { . ${CONFIG_SITE} - if [ X"$ac_cv_uint" == X"yes" ]; then + if [ X"$ac_cv_uint" = X"yes" ]; then CFLAGS="${CFLAGS} -DHAVE_uint" fi install -d ${S}/bin/${TARGET_SYS} diff --git a/recipes/lmbench/lmbench_3.0-a9.bb b/recipes/lmbench/lmbench_3.0-a9.bb index d058849dcd..b3557d2877 100644 --- a/recipes/lmbench/lmbench_3.0-a9.bb +++ b/recipes/lmbench/lmbench_3.0-a9.bb @@ -34,7 +34,7 @@ do_configure() { do_compile () { . ${CONFIG_SITE} - if [ X"$ac_cv_uint" == X"yes" ]; then + if [ X"$ac_cv_uint" = X"yes" ]; then CFLAGS="${CFLAGS} -DHAVE_uint" fi install -d ${S}/bin/${TARGET_SYS}