From 1974c1a97941de0fd7764cc1bc351e77ea7a0fa7 Mon Sep 17 00:00:00 2001 From: Deepika Upadhyay Date: Fri, 20 Nov 2020 19:32:45 +0530 Subject: [PATCH] cmake: require Lua 5.3 and up fixes: https://tracker.ceph.com/issues/48312 Signed-off-by: Deepika Upadhyay --- src/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 2af3f66e3d4..23cdbd44e79 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -511,7 +511,7 @@ endif(${WITH_LTTNG}) add_subdirectory(global) -find_package(Lua REQUIRED) +find_package(Lua 5.3 REQUIRED) # rados object classes add_subdirectory(cls)