[Cmake-commits] CMake branch, next, updated. v3.1.2-1143-g6818ee6

Nils Gladitz nilsgladitz at gmail.com
Tue Feb 10 06:27:50 EST 2015


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  6818ee67a5b1f81e3e5b7db36a49774d3dde8c99 (commit)
       via  007bab6b400d1da0b4afb6a3b13fbbbe7b533361 (commit)
       via  7ab4fb5760a03cfcf1317351ebc75c7cfd91de96 (commit)
      from  d96c269d8e899f9318ea4f30794b4b4b4f000a97 (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=6818ee67a5b1f81e3e5b7db36a49774d3dde8c99
commit 6818ee67a5b1f81e3e5b7db36a49774d3dde8c99
Merge: d96c269 007bab6
Author:     Nils Gladitz <nilsgladitz at gmail.com>
AuthorDate: Tue Feb 10 06:27:48 2015 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Tue Feb 10 06:27:48 2015 -0500

    Merge topic 'makefile-missing-comment' into next
    
    007bab6b Makefile: Fix target bound custom command COMMENT output.
    7ab4fb57 CMake Nightly Date Stamp


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=007bab6b400d1da0b4afb6a3b13fbbbe7b533361
commit 007bab6b400d1da0b4afb6a3b13fbbbe7b533361
Author:     Nils Gladitz <nilsgladitz at gmail.com>
AuthorDate: Tue Feb 10 12:26:56 2015 +0100
Commit:     Nils Gladitz <nilsgladitz at gmail.com>
CommitDate: Tue Feb 10 12:26:56 2015 +0100

    Makefile: Fix target bound custom command COMMENT output.

diff --git a/Source/cmLocalUnixMakefileGenerator3.cxx b/Source/cmLocalUnixMakefileGenerator3.cxx
index fbf2140..dfa6cc9 100644
--- a/Source/cmLocalUnixMakefileGenerator3.cxx
+++ b/Source/cmLocalUnixMakefileGenerator3.cxx
@@ -1132,7 +1132,7 @@ cmLocalUnixMakefileGenerator3
   if(echo_comment)
     {
     const char* comment = ccg.GetComment();
-    if(comment && !*comment)
+    if(comment && *comment)
       {
       this->AppendEcho(commands, comment,
                        cmLocalUnixMakefileGenerator3::EchoGenerate);

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

Summary of changes:
 Source/CMakeVersion.cmake                |    2 +-
 Source/cmLocalUnixMakefileGenerator3.cxx |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list