Skip to content

Commit 204f561

Browse files
committed
Fix bashisms
1 parent d4c59d3 commit 204f561

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

configure.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ AC_ARG_WITH([llvm-lua],
2323
[lua=llvm-lua],
2424
[])
2525

26-
AS_IF([test "$lua" == "lua"],
26+
AS_IF([test "$lua" = "lua"],
2727
AC_SEARCH_LIBS(
2828
[lua_pcall],
2929
[lua lua5.1],
@@ -33,15 +33,15 @@ AS_IF([test "$lua" == "lua"],
3333
AC_MSG_ERROR([Can't LÖVE without Lua])
3434
)
3535
)
36-
AS_IF([test "$lua" == "luajit"],
36+
AS_IF([test "$lua" = "luajit"],
3737
AC_SEARCH_LIBS(
3838
[lua_pcall],
3939
[luajit luajit-5.1],
4040
AC_SUBST([INCLUDE_LUA], [-I/usr/include/luajit-2.0]),
4141
AC_MSG_ERROR([Can't LÖVE without LuaJIT])
4242
)
4343
)
44-
AS_IF([test "$lua" == "llvm-lua"],
44+
AS_IF([test "$lua" = "llvm-lua"],
4545
AC_SEARCH_LIBS(
4646
[lua_pcall],
4747
[llvm-lua],

0 commit comments

Comments
 (0)