From 186f8c6ac1d57619455222349f895a6fc0fafde1 Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Mon, 29 Jun 2015 13:14:06 -0700 Subject: [PATCH] Cmake: missing quotes I hate it when I do this Signed-off-by: Dirk Hohndel --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7784fd7ef..2f84ffe78 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -63,7 +63,7 @@ else() set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DUSE_LIBGIT23_API") set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DUSE_LIBGIT23_API") find_package(Libssh2 QUIET CONFIG) - if (${LIBSSH2_VERSION} STRGREATER "1.6.1") + if ("${LIBSSH2_VERSION}" STRGREATER "1.6.1") set(LIBSSH2_LIBRARIES Libssh2::libssh2) endif() if(!LIBSSH2_FOUND OR "${LIBSSH2_FOUND}" STREQUAL "")