CMake: quote ':' in Windows NMake Makefiles (#9963)
This commit is contained in:
parent
f444b9555f
commit
fcbdd3129e
|
@ -84,7 +84,8 @@ static int kwsysSystem_Shell__CharNeedsQuotesOnUnix(char c)
|
|||
static int kwsysSystem_Shell__CharNeedsQuotesOnWindows(char c)
|
||||
{
|
||||
return ((c == '\'') || (c == '#') || (c == '&') ||
|
||||
(c == '<') || (c == '>') || (c == '|') || (c == '^'));
|
||||
(c == '<') || (c == '>') || (c == '|') ||
|
||||
(c == '^') || (c == ':'));
|
||||
}
|
||||
|
||||
/*--------------------------------------------------------------------------*/
|
||||
|
|
Loading…
Reference in New Issue