diff --git a/Source/kwsys/System.c b/Source/kwsys/System.c index 5d178bfa27..99d5c05bfd 100644 --- a/Source/kwsys/System.c +++ b/Source/kwsys/System.c @@ -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 == ':')); } /*--------------------------------------------------------------------------*/