From 2eab3b2cbb3464ae79ce3b39d924f1844b96bd8f Mon Sep 17 00:00:00 2001 From: David Cole Date: Thu, 9 Sep 2010 12:34:07 -0400 Subject: [PATCH] Revert commit: CMake: quote ':' in Windows NMake Makefiles (#9963) -- it was not the right fix and caused mucho other problemo --- Source/kwsys/System.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/kwsys/System.c b/Source/kwsys/System.c index 99d5c05bf..5d178bfa2 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 == '^')); } /*--------------------------------------------------------------------------*/