1
0
Эх сурвалжийг харах

Revert commit: CMake: quote ':' in Windows NMake Makefiles (#9963) -- it was not the right fix and caused mucho other problemo

David Cole 15 жил өмнө
parent
commit
2eab3b2cbb
1 өөрчлөгдсөн 1 нэмэгдсэн , 2 устгасан
  1. 1 2
      Source/kwsys/System.c

+ 1 - 2
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 == '^'));
 }
 
 /*--------------------------------------------------------------------------*/