lmbench: fix sh equality operator
authorAndreas Oberritter <obi@opendreambox.org>
Tue, 26 Oct 2010 15:43:06 +0000 (15:43 +0000)
committerMichael Smith <msmith@cbnco.com>
Sun, 14 Nov 2010 23:36:53 +0000 (18:36 -0500)
Signed-off-by: Andreas Oberritter <obi@opendreambox.org>
Acked-by: Michael Smith <msmith@cbnco.com>
recipes/lmbench/lmbench_2.0.4.bb
recipes/lmbench/lmbench_2.5.bb
recipes/lmbench/lmbench_3.0-a9.bb

index 50a5377..c1707df 100644 (file)
@@ -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}
index de7fc48..ca55602 100644 (file)
@@ -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}
index d058849..b3557d2 100644 (file)
@@ -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}