Author: tfaber Date: Tue Sep 10 20:06:05 2013 New Revision: 60010
URL: http://svn.reactos.org/svn/reactos?rev=60010&view=rev Log: [CMAKE] - Correctly escape error message. Spotted & tested by David Quintana
Modified: trunk/reactos/cmake/CMakeMacros.cmake
Modified: trunk/reactos/cmake/CMakeMacros.cmake URL: http://svn.reactos.org/svn/reactos/trunk/reactos/cmake/CMakeMacros.cmake?rev... ============================================================================== --- trunk/reactos/cmake/CMakeMacros.cmake [iso-8859-1] (original) +++ trunk/reactos/cmake/CMakeMacros.cmake [iso-8859-1] Tue Sep 10 20:06:05 2013 @@ -189,7 +189,7 @@ set(${var} 16) elseif(${dir} STREQUAL reactos/system32/wbem) set(${var} 17) - else() + else() message(FATAL_ERROR "Wrong destination: ${dir}") endif() endmacro() @@ -207,7 +207,7 @@ endif()
if(NOT _CD_FOR) - message(FATAL_ERROR "You must provide a cd name (or "all" for all of them) to install the file on!") + message(FATAL_ERROR "You must provide a cd name (or "all" for all of them) to install the file on!") endif()
#get file if we need to