[Cmake-commits] CMake branch, next, updated. v2.8.5-1814-ge680b67

David Cole david.cole at kitware.com
Mon Sep 5 12:43:48 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  e680b6782370941ad05359287466639e3439a2b9 (commit)
       via  e05e0f1d2c63353e25675df5430e1cbcd909cf93 (commit)
       via  48ba9b2f197cde7f309b9ef3770e1bf003a7e8e8 (commit)
       via  99d8ca624dfd728f28443334bee4074318472145 (commit)
       via  405bcd8def3c0a15d0005638e838623180a333cd (commit)
      from  e5fd5b79722a7a041cd3958200ecf8cad4cc0058 (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=e680b6782370941ad05359287466639e3439a2b9
commit e680b6782370941ad05359287466639e3439a2b9
Merge: e5fd5b7 e05e0f1
Author:     David Cole <david.cole at kitware.com>
AuthorDate: Mon Sep 5 12:43:45 2011 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Sep 5 12:43:45 2011 -0400

    Merge topic 'fix-12370-no-space-in-target-name' into next
    
    e05e0f1 Xcode: No spaces in makefile target names (#12370)
    48ba9b2 KWSys Nightly Date Stamp
    99d8ca6 KWSys Nightly Date Stamp
    405bcd8 KWSys Nightly Date Stamp


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=e05e0f1d2c63353e25675df5430e1cbcd909cf93
commit e05e0f1d2c63353e25675df5430e1cbcd909cf93
Author:     Johan Björk <phb at spotify.com>
AuthorDate: Sat Aug 27 20:17:00 2011 +0200
Commit:     David Cole <david.cole at kitware.com>
CommitDate: Mon Sep 5 12:20:19 2011 -0400

    Xcode: No spaces in makefile target names (#12370)
    
    Don't use spaces for target names in the makefiles.

diff --git a/Source/cmGlobalXCodeGenerator.cxx b/Source/cmGlobalXCodeGenerator.cxx
index 02a95fe..0f2ee9b 100644
--- a/Source/cmGlobalXCodeGenerator.cxx
+++ b/Source/cmGlobalXCodeGenerator.cxx
@@ -327,7 +327,9 @@ std::string
 cmGlobalXCodeGenerator::PostBuildMakeTarget(std::string const& tName,
                                             std::string const& configName)
 {
-  std::string out = "PostBuild." + tName;
+  std::string target = tName;
+  cmSystemTools::ReplaceString(target, " ", "_");
+  std::string out = "PostBuild." + target;
   if(this->XcodeVersion > 20)
     {
     out += "." + configName;

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

Summary of changes:
 Source/cmGlobalXCodeGenerator.cxx |    4 +++-
 Source/kwsys/kwsysDateStamp.cmake |    2 +-
 2 files changed, 4 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list