From 710646c101d6d9c5c1911bc063c3ca70fc35c21d Mon Sep 17 00:00:00 2001 From: James Morris Date: Sat, 12 Jan 2013 20:26:39 +0000 Subject: [PATCH] fix to force usage of lua 5.1 when both 5.1 and 5.2 installed --- cmake/ConkyPlatformChecks.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmake/ConkyPlatformChecks.cmake b/cmake/ConkyPlatformChecks.cmake index 526df10b..7d36728e 100644 --- a/cmake/ConkyPlatformChecks.cmake +++ b/cmake/ConkyPlatformChecks.cmake @@ -233,7 +233,7 @@ if(BUILD_X11) endif(X11_FOUND) endif(BUILD_X11) -pkg_search_module(LUA REQUIRED lua>=5.1 lua-5.1>=5.1 lua5.1>=5.1) +pkg_search_module(LUA REQUIRED lua5.1 lua-5.1 lua=5.1) set(conky_libs ${conky_libs} ${LUA_LIBRARIES}) set(conky_includes ${conky_includes} ${LUA_INCLUDE_DIRS}) if(BUILD_LUA_CAIRO)