From 00950ff2ed1f5cffb3a3ea6acbbc1d0a27f761a4 Mon Sep 17 00:00:00 2001 From: Andreas Oberritter Date: Tue, 26 Oct 2010 15:43:06 +0000 Subject: lmbench: fix sh equality operator Signed-off-by: Andreas Oberritter Acked-by: Michael Smith --- 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(-) (limited to 'recipes/lmbench') 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} -- cgit 1.2.3-korg