summaryrefslogtreecommitdiff
path: root/Source/kwsys/System.c
diff options
context:
space:
mode:
authorDavid Cole <David.Cole@kitware.com>2010-09-09 12:34:07 -0400
committerDavid Cole <David.Cole@kitware.com>2010-09-09 12:40:04 -0400
commit2eab3b2cbb3464ae79ce3b39d924f1844b96bd8f (patch)
tree00327b979b15e52406065de9cd02c59875a23a48 /Source/kwsys/System.c
parent42dbb43294a229dad30fa1a8d925bdd4c0f47d65 (diff)
downloadcmake-2eab3b2cbb3464ae79ce3b39d924f1844b96bd8f.tar.gz
Revert commit: CMake: quote ':' in Windows NMake Makefiles (#9963) -- it was not the right fix and caused mucho other problemo
Diffstat (limited to 'Source/kwsys/System.c')
-rw-r--r--Source/kwsys/System.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/kwsys/System.c b/Source/kwsys/System.c
index 99d5c05bfd..5d178bfa27 100644
--- a/Source/kwsys/System.c
+++ b/Source/kwsys/System.c
@@ -84,8 +84,7 @@ 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 == '^'));
}
/*--------------------------------------------------------------------------*/