Skip to content
Snippets Groups Projects
Commit 5b2a401a authored by David Cole's avatar David Cole
Browse files

Revert commit: CMake: quote ':' in Windows NMake Makefiles (#9963) -- it was...

Revert commit: CMake: quote ':' in Windows NMake Makefiles (#9963) -- it was not the right fix and caused mucho other problemo
parent e3236f7a
No related branches found
No related tags found
No related merge requests found
...@@ -84,8 +84,7 @@ static int kwsysSystem_Shell__CharNeedsQuotesOnUnix(char c) ...@@ -84,8 +84,7 @@ static int kwsysSystem_Shell__CharNeedsQuotesOnUnix(char c)
static int kwsysSystem_Shell__CharNeedsQuotesOnWindows(char c) static int kwsysSystem_Shell__CharNeedsQuotesOnWindows(char c)
{ {
return ((c == '\'') || (c == '#') || (c == '&') || return ((c == '\'') || (c == '#') || (c == '&') ||
(c == '<') || (c == '>') || (c == '|') || (c == '<') || (c == '>') || (c == '|') || (c == '^'));
(c == '^') || (c == ':'));
} }
/*--------------------------------------------------------------------------*/ /*--------------------------------------------------------------------------*/
......
...@@ -18,4 +18,4 @@ SET(KWSYS_DATE_STAMP_YEAR 2010) ...@@ -18,4 +18,4 @@ SET(KWSYS_DATE_STAMP_YEAR 2010)
SET(KWSYS_DATE_STAMP_MONTH 09) SET(KWSYS_DATE_STAMP_MONTH 09)
# KWSys version date day component. Format is DD. # KWSys version date day component. Format is DD.
SET(KWSYS_DATE_STAMP_DAY 08) SET(KWSYS_DATE_STAMP_DAY 09)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment