From 497c3a18e31e76b552cb6a4504fbbabcc877b060 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Mon, 16 Feb 2004 04:49:06 +0000 Subject: [PATCH] fix check --- stepmania/autoconf/m4/lua.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stepmania/autoconf/m4/lua.m4 b/stepmania/autoconf/m4/lua.m4 index 93fb039004..6957a2197b 100644 --- a/stepmania/autoconf/m4/lua.m4 +++ b/stepmania/autoconf/m4/lua.m4 @@ -6,7 +6,7 @@ if test "$LUA_CONFIG" != ""; then LUA_LIBS=`lua-config --static` else if test "$LIB_LUA" = ""; then - AC_CHECK_LIB(lualib, lua_open, LIB_LUA=-llua) + AC_CHECK_LIB(lua, lua_open, LIB_LUA=-llua) fi if test "$LIB_LUA" = ""; then AC_CHECK_LIB(lua50, lua_open, LIB_LUA=-llua50)