From: Mathias Froehlich Date: Sun, 11 Sep 2011 10:42:59 +0000 (+0200) Subject: cmake: Quote argument in FindSvnClient.cmake. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c5b22d248ea0616444af2ad51364da40137fdae5;p=flightgear.git cmake: Quote argument in FindSvnClient.cmake. --- diff --git a/CMakeModules/FindSvnClient.cmake b/CMakeModules/FindSvnClient.cmake index 0823a5322..7b175d4f0 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")