[Cmake-commits] CMake branch, next, updated. v2.8.5-1432-g6947e83

David Cole david.cole at kitware.com
Thu Aug 4 13:23:32 EDT 2011


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  6947e837f3b4298ae5db3a7bed51dbb7359e8943 (commit)
       via  d87eb350f6b7c810145205fb6819e3174efdcc23 (commit)
      from  f1f2f01f58f68f6c57cc373cfcdb65b6552ca392 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=6947e837f3b4298ae5db3a7bed51dbb7359e8943
commit 6947e837f3b4298ae5db3a7bed51dbb7359e8943
Merge: f1f2f01 d87eb35
Author:     David Cole <david.cole at kitware.com>
AuthorDate: Thu Aug 4 13:23:13 2011 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Thu Aug 4 13:23:13 2011 -0400

    Merge topic 'fix-12259-quote-commas-for-xcode' into next
    
    d87eb35 Xcode: Quote ',' in Xcode string values (#12259)


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=d87eb350f6b7c810145205fb6819e3174efdcc23
commit d87eb350f6b7c810145205fb6819e3174efdcc23
Author:     Johan Björk <phb at spotify.com>
AuthorDate: Thu Jun 9 10:36:53 2011 +0200
Commit:     David Cole <david.cole at kitware.com>
CommitDate: Thu Aug 4 13:03:44 2011 -0400

    Xcode: Quote ',' in Xcode string values (#12259)

diff --git a/Source/cmXCodeObject.cxx b/Source/cmXCodeObject.cxx
index 71c7c25..30e5076 100644
--- a/Source/cmXCodeObject.cxx
+++ b/Source/cmXCodeObject.cxx
@@ -241,7 +241,7 @@ void cmXCodeObject::PrintString(std::ostream& os,cmStdString String)
   // considered special by the Xcode project file parser.
   bool needQuote =
     (String.empty() ||
-     String.find_first_of(" <>.+-=@$[]") != String.npos);
+     String.find_first_of(" <>.+-=@$[],") != String.npos);
   const char* quote = needQuote? "\"" : "";
 
   // Print the string, quoted and escaped as necessary.

-----------------------------------------------------------------------

Summary of changes:
 Source/cmXCodeObject.cxx |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list