Skip to content

Commit

Permalink
Fix bashisms
Browse files Browse the repository at this point in the history
  • Loading branch information
AMDmi3 committed Apr 20, 2012
1 parent d4c59d3 commit 204f561
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions configure.in
Expand Up @@ -23,7 +23,7 @@ AC_ARG_WITH([llvm-lua],
[lua=llvm-lua],
[])

AS_IF([test "$lua" == "lua"],
AS_IF([test "$lua" = "lua"],
AC_SEARCH_LIBS(
[lua_pcall],
[lua lua5.1],
Expand All @@ -33,15 +33,15 @@ AS_IF([test "$lua" == "lua"],
AC_MSG_ERROR([Can't LÖVE without Lua])
)
)
AS_IF([test "$lua" == "luajit"],
AS_IF([test "$lua" = "luajit"],
AC_SEARCH_LIBS(
[lua_pcall],
[luajit luajit-5.1],
AC_SUBST([INCLUDE_LUA], [-I/usr/include/luajit-2.0]),
AC_MSG_ERROR([Can't LÖVE without LuaJIT])
)
)
AS_IF([test "$lua" == "llvm-lua"],
AS_IF([test "$lua" = "llvm-lua"],
AC_SEARCH_LIBS(
[lua_pcall],
[llvm-lua],
Expand Down

0 comments on commit 204f561

Please sign in to comment.