From f50a1754a67b1394f7203705fce32ff095a5a8ae Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Tue, 10 Sep 2013 20:06:05 +0000 Subject: [PATCH] [CMAKE] - Correctly escape error message. Spotted & tested by David Quintana svn path=/trunk/; revision=60010 --- reactos/cmake/CMakeMacros.cmake | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/cmake/CMakeMacros.cmake b/reactos/cmake/CMakeMacros.cmake index e1fec95c116..ae6b1a3c5bf 100644 --- a/reactos/cmake/CMakeMacros.cmake +++ b/reactos/cmake/CMakeMacros.cmake @@ -189,7 +189,7 @@ macro(dir_to_num dir var) 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 @@ function(add_cd_file) 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