[oe-commits] Andreas Oberritter : lmbench: fix sh equality operator

git version control git at git.openembedded.org
Sun Nov 14 23:43:35 UTC 2010


Module: openembedded.git
Branch: master
Commit: 00950ff2ed1f5cffb3a3ea6acbbc1d0a27f761a4
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=00950ff2ed1f5cffb3a3ea6acbbc1d0a27f761a4

Author: Andreas Oberritter <obi at opendreambox.org>
Date:   Tue Oct 26 15:43:06 2010 +0000

lmbench: fix sh equality operator

Signed-off-by: Andreas Oberritter <obi at opendreambox.org>
Acked-by: Michael Smith <msmith at cbnco.com>

---

 recipes/lmbench/lmbench_2.0.4.bb  |    2 +-
 recipes/lmbench/lmbench_2.5.bb    |    2 +-
 recipes/lmbench/lmbench_3.0-a9.bb |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/recipes/lmbench/lmbench_2.0.4.bb b/recipes/lmbench/lmbench_2.0.4.bb
index 50a5377..c1707df 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 de7fc48..ca55602 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 d058849..b3557d2 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}





More information about the Openembedded-commits mailing list