[Cmake-commits] CMake branch, next, updated. v2.8.10.2-1676-gc28162d
Stephen Kelly
steveire at gmail.com
Sun Jan 20 11:06:40 EST 2013
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 c28162d00c4c572f6aa8f33a268533c9b5ba71d2 (commit)
via 203e55d72bd282b5a49dc12e8c890ec9da58ad80 (commit)
from f627eb31c0a39cd8b619ebfe3742bf9f836cd422 (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=c28162d00c4c572f6aa8f33a268533c9b5ba71d2
commit c28162d00c4c572f6aa8f33a268533c9b5ba71d2
Merge: f627eb3 203e55d
Author: Stephen Kelly <steveire at gmail.com>
AuthorDate: Sun Jan 20 11:06:37 2013 -0500
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Sun Jan 20 11:06:37 2013 -0500
Merge topic 'fix-COMPATIBLE_INTERFACE-properties' into next
203e55d Fix early-return to a continue.
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=203e55d72bd282b5a49dc12e8c890ec9da58ad80
commit 203e55d72bd282b5a49dc12e8c890ec9da58ad80
Author: Stephen Kelly <steveire at gmail.com>
AuthorDate: Sun Jan 20 17:05:54 2013 +0100
Commit: Stephen Kelly <steveire at gmail.com>
CommitDate: Sun Jan 20 17:05:54 2013 +0100
Fix early-return to a continue.
diff --git a/Source/cmTarget.cxx b/Source/cmTarget.cxx
index 0493aec..c1c484b 100644
--- a/Source/cmTarget.cxx
+++ b/Source/cmTarget.cxx
@@ -4632,7 +4632,7 @@ bool isLinkDependentProperty(cmTarget *tgt, const std::string &p,
const char *prop = li->Target->GetProperty(interfaceProperty);
if (!prop)
{
- return false;
+ continue;
}
std::vector<std::string> props;
-----------------------------------------------------------------------
Summary of changes:
Source/cmTarget.cxx | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list