# HG changeset patch # User smxx # Date 1269727833 0 # Node ID 8702d3479d10f9c3a0f7215d0235eb177d2a1f7b # Parent 9ebdc21aba877e961740009d4aabe3c6984db463 Sometimes you should just check to see if syntax highlighting is kicking in ... diff -r 9ebdc21aba87 -r 8702d3479d10 cmake_modules/FindLua.cmake --- a/cmake_modules/FindLua.cmake Sat Mar 27 21:04:38 2010 +0000 +++ b/cmake_modules/FindLua.cmake Sat Mar 27 22:10:33 2010 +0000 @@ -10,7 +10,7 @@ ELSE(APPLE) #locate the system's lua library FIND_LIBRARY(LUA_DEFAULT NAMES lua51 lua5.1 lua-5.1 lua PATHS /lib /usr/lib /usr/local/lib /usr/pkg/lib) - IF(${LUA_DEFAULT} EQUALS "LUA_DEFAULT-NOTFOUND") + IF(${LUA_DEFAULT} MATCHES "LUA_DEFAULT-NOTFOUND") UNSET(LUA_DEFAULT) MESSAGE(FATAL_ERROR "Couldn't find Lua 5.1 library!") ENDIF()