diff options
author | Brad King <brad.king@kitware.com> | 2005-06-30 15:18:56 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2005-06-30 15:18:56 (GMT) |
commit | 6048659e66e9d3055c7ff1f40f77d9f5c925af63 (patch) | |
tree | fadaa10a50a8d08431fc71f42ce6aa1df49c2108 /Modules/Platform | |
parent | 154a0cd16274832d8d4a64137478ebf65b95c684 (diff) | |
download | CMake-6048659e66e9d3055c7ff1f40f77d9f5c925af63.zip CMake-6048659e66e9d3055c7ff1f40f77d9f5c925af63.tar.gz CMake-6048659e66e9d3055c7ff1f40f77d9f5c925af63.tar.bz2 |
BUG: Fixed escaped quote at end of .
Diffstat (limited to 'Modules/Platform')
-rw-r--r-- | Modules/Platform/Windows-cl.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/Platform/Windows-cl.cmake b/Modules/Platform/Windows-cl.cmake index 9d975b9..3f0126c 100644 --- a/Modules/Platform/Windows-cl.cmake +++ b/Modules/Platform/Windows-cl.cmake @@ -117,7 +117,7 @@ IF(CMAKE_GENERATOR MATCHES "NMake Makefiles") MESSAGE(STATUS "Check if this is a free VC compiler") EXEC_PROGRAM(${CMAKE_C_COMPILER} ${CMAKE_BINARY_DIR}/CMakeTmp2 ARGS /nologo /MD /EHsc - \"${testForFreeVCFile}" + \"${testForFreeVCFile}\" OUTPUT_VARIABLE CMAKE_COMPILER_OUTPUT RETURN_VALUE CMAKE_COMPILER_RETURN ) |