mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 21:21:33 +00:00
[CMAKE]
- Correctly escape error message. Spotted & tested by David Quintana svn path=/trunk/; revision=60010
This commit is contained in:
parent
3ae1db0c81
commit
f50a1754a6
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue