[Cmake-commits] CMake branch, next, updated. v2.8.9-1173-gf461abb
Stephen Kelly
steveire at gmail.com
Sun Oct 21 04:43:20 EDT 2012
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 f461abbc352b2e44943e1589f0e0527657cac9c7 (commit)
via 92b2b7c99cf5f8df43e2b82198c4d64ec6262154 (commit)
from cb4bff9882ecb7dbd674cc9d97ac5cd42248f0dc (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=f461abbc352b2e44943e1589f0e0527657cac9c7
commit f461abbc352b2e44943e1589f0e0527657cac9c7
Merge: cb4bff9 92b2b7c
Author: Stephen Kelly <steveire at gmail.com>
AuthorDate: Sun Oct 21 04:43:18 2012 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Sun Oct 21 04:43:18 2012 -0400
Merge topic 'genex-validate-target-property-names' into next
92b2b7c Fix infinite loop added by the parent commit.
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=92b2b7c99cf5f8df43e2b82198c4d64ec6262154
commit 92b2b7c99cf5f8df43e2b82198c4d64ec6262154
Author: Stephen Kelly <steveire at gmail.com>
AuthorDate: Sun Oct 21 10:36:20 2012 +0200
Commit: Stephen Kelly <steveire at gmail.com>
CommitDate: Sun Oct 21 10:36:20 2012 +0200
Fix infinite loop added by the parent commit.
diff --git a/Source/cmGlobalGenerator.cxx b/Source/cmGlobalGenerator.cxx
index 27e9857..b9de4d8 100644
--- a/Source/cmGlobalGenerator.cxx
+++ b/Source/cmGlobalGenerator.cxx
@@ -1111,7 +1111,7 @@ void cmGlobalGenerator::CreateGeneratorTargets()
for(std::vector<cmTarget*>::const_iterator
j = mf->GetOwnedImportedTargets().begin();
- j != mf->GetOwnedImportedTargets().end(); ++i)
+ j != mf->GetOwnedImportedTargets().end(); ++j)
{
cmGeneratorTarget* gt = new cmGeneratorTarget(*j);
this->GeneratorTargets[*j] = gt;
-----------------------------------------------------------------------
Summary of changes:
Source/cmGlobalGenerator.cxx | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list