[cmake-commits] king committed cmLocalGenerator.cxx 1.148 1.149

cmake-commits at cmake.org cmake-commits at cmake.org
Thu Sep 21 15:30:11 EDT 2006


Update of /cvsroot/CMake/CMake/Source
In directory public:/mounts/ram/cvs-serv3607/Source

Modified Files:
	cmLocalGenerator.cxx 
Log Message:
BUG: Do not escape parens because we need to be able to reference make variables in the scripts.


Index: cmLocalGenerator.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmLocalGenerator.cxx,v
retrieving revision 1.148
retrieving revision 1.149
diff -u -d -r1.148 -r1.149
--- cmLocalGenerator.cxx	21 Sep 2006 19:14:06 -0000	1.148
+++ cmLocalGenerator.cxx	21 Sep 2006 19:30:06 -0000	1.149
@@ -2257,8 +2257,7 @@
     {
     for(const char* c = str; *c; ++c)
       {
-      if(*c == '\\' || *c == '\'' || *c == '"' || *c == ';' ||
-         *c == '(' || *c == ')')
+      if(*c == '\\' || *c == '\'' || *c == '"' || *c == ';')
         {
         result += "\\";
         }



More information about the Cmake-commits mailing list