CMake: quote ':' in Windows NMake Makefiles (#9963)

This commit is contained in:
David Cole 2010-09-08 18:41:21 -04:00
parent f444b9555f
commit fcbdd3129e
1 changed files with 2 additions and 1 deletions

View File

@ -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 == ':'));
}
/*--------------------------------------------------------------------------*/