浏览代码

BUG: Updated ExternlProject.cmake / generation of <project>-gitclone.cmake

In <Project>-gitclone.cmake, error message were displayed using single quote, change
it to use double quote. That error message will be displayer with spaces.
Jean-Christophe Fillion-Robin 15 年之前
父节点
当前提交
29d486afc8
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      CMake/ExternalProject.cmake

+ 1 - 1
CMake/ExternalProject.cmake

@@ -719,7 +719,7 @@ execute_process(
   RESULT_VARIABLE error_code
   )
 if(error_code)
-  message(FATAL_ERROR 'Failed to clone repository: ${git_repository}')
+  message(FATAL_ERROR \"Failed to clone repository: ${git_repository}\")
 endif()
 ")    
     set(comment "Performing download step (GIT clone) for '${name}'")