mirror of
https://github.com/reactos/CMake.git
synced 2024-12-02 08:37:09 +00:00
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
Block a user