From: Mathias Froehlich Date: Sun, 11 Sep 2011 21:27:03 +0000 (+0200) Subject: cmake: add quotes to string split. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c77161e2b087baa85371f84cb886f579f32001fe;p=simgear.git cmake: add quotes to string split. --- diff --git a/CMakeModules/FindSvnClient.cmake b/CMakeModules/FindSvnClient.cmake index baf03027..f7d145ea 100644 --- a/CMakeModules/FindSvnClient.cmake +++ b/CMakeModules/FindSvnClient.cmake @@ -16,7 +16,7 @@ if(HAVE_APR_CONFIG) OUTPUT_STRIP_TRAILING_WHITESPACE) # clean up some vars, or other CMake pieces complain - string(STRIP ${RAW_APR_LIBS} APR_LIBS) + string(STRIP "${RAW_APR_LIBS}" APR_LIBS) else(HAVE_APR_CONFIG) message(STATUS "apr-1-config not found, implement manual search for APR")