[cmake-commits] hoffman committed cmXCodeObject.cxx 1.21 1.22

cmake-commits at cmake.org cmake-commits at cmake.org
Sun May 27 10:32:24 EDT 2007


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

Modified Files:
	cmXCodeObject.cxx 
Log Message:
ENH: @ must be escaped in xcode projects


Index: cmXCodeObject.cxx
===================================================================
RCS file: /cvsroot/CMake/CMake/Source/cmXCodeObject.cxx,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- cmXCodeObject.cxx	21 Feb 2007 19:01:19 -0000	1.21
+++ cmXCodeObject.cxx	27 May 2007 14:32:22 -0000	1.22
@@ -194,7 +194,7 @@
   cmSystemTools::ReplaceString(ss, "\"", "\\\"");
   bool needQuote = false;
   this->String = "";
-  if(ss.find_first_of(" <>.+-=") != ss.npos)
+  if(ss.find_first_of(" <>.+-=@") != ss.npos)
     {
     needQuote = true;
     }



More information about the Cmake-commits mailing list