From 75d6f4ce18376d5e493279e2feecbd8046491ec0 Mon Sep 17 00:00:00 2001 From: Vincent Torri Date: Wed, 23 Jun 2010 18:19:10 +0000 Subject: [PATCH] fix test SVN revision: 49823 --- legacy/edje/configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/legacy/edje/configure.ac b/legacy/edje/configure.ac index 8d159ecce7..9fbdb6bef2 100644 --- a/legacy/edje/configure.ac +++ b/legacy/edje/configure.ac @@ -225,7 +225,7 @@ PKG_CHECK_MODULES([LUA], [lua >= 5.1.0], requirement_lua="lua", [PKG_CHECK_MODULES([LUA], [lua51 >= 5.1.0], requirement_lua="lua51", [have_lua="no])])])]) -if test "x${have_lua}" = "no" ; then +if test "x${have_lua}" = "xno" ; then AC_MSG_CHECKING([whether lua_newstate() is in liblua]) AC_CHECK_LIB([lua], [lua_newstate], [ @@ -237,7 +237,7 @@ if test "x${have_lua}" = "no" ; then fi AC_SUBST(lua_libs) -if test "x${have_lua}" = "no" ; then +if test "x${have_lua}" = "xno" ; then AC_MSG_ERROR([Cannot find lua library. Be sure that you have installed it and set CFLAGS and LDFLAGS correctly]) fi