From c5237444a93a2583ad9e251117d614f9ff834c59 Mon Sep 17 00:00:00 2001 From: Julien Danjou Date: Wed, 4 Jun 2008 18:38:05 +0200 Subject: [PATCH] [build] Fix lua detection Signed-off-by: Julien Danjou --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 1815d698..1cc11b7d 100644 --- a/configure.ac +++ b/configure.ac @@ -109,7 +109,7 @@ AC_DEFINE_UNQUOTED([AWESOME_COMPILE_BY], ["$aw_whoami"], [build user]) AC_ARG_VAR([LUA], [Lua interpreter]) AC_PATH_PROG([LUA], [lua], [:]) -test "x$LUA" = "x:" && AC_MSG_WARN([awesome compilation requires Lua]) +test "x$LUA" = "x" && AC_MSG_WARN([awesome compilation requires Lua]) AS_AC_EXPAND(awesomelibdir, "$datarootdir/awesome/lib") AC_DEFINE_UNQUOTED([AWESOME_LUA_LIB_PATH], "${awesomelibdir}", [awesome lib path])