diff options
author | David Cole <David.Cole@kitware.com> | 2010-09-09 16:34:07 (GMT) |
---|---|---|
committer | David Cole <David.Cole@kitware.com> | 2010-09-09 16:40:04 (GMT) |
commit | 2eab3b2cbb3464ae79ce3b39d924f1844b96bd8f (patch) | |
tree | 00327b979b15e52406065de9cd02c59875a23a48 /Source/kwsys/System.c | |
parent | 42dbb43294a229dad30fa1a8d925bdd4c0f47d65 (diff) | |
download | CMake-2eab3b2cbb3464ae79ce3b39d924f1844b96bd8f.zip CMake-2eab3b2cbb3464ae79ce3b39d924f1844b96bd8f.tar.gz CMake-2eab3b2cbb3464ae79ce3b39d924f1844b96bd8f.tar.bz2 |
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.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/kwsys/System.c b/Source/kwsys/System.c index 99d5c05..5d178bf 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 == '^')); } /*--------------------------------------------------------------------------*/ |