diff options
author | Stephen Kelly <steveire@gmail.com> | 2015-08-02 08:29:01 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2015-08-23 16:05:13 (GMT) |
commit | 3fa1b9641dd16ad93c64737fd2eeb131cca70f76 (patch) | |
tree | 60d490723884bd87303e72c7256c576907c714b8 /Source/cmGlobalUnixMakefileGenerator3.cxx | |
parent | 55e3927634a4b071c1cf52cc2dc406b8973b82cc (diff) | |
download | CMake-3fa1b9641dd16ad93c64737fd2eeb131cca70f76.zip CMake-3fa1b9641dd16ad93c64737fd2eeb131cca70f76.tar.gz CMake-3fa1b9641dd16ad93c64737fd2eeb131cca70f76.tar.bz2 |
cmGlobalUnixMakefileGenerator3: Change the progress container key.
Diffstat (limited to 'Source/cmGlobalUnixMakefileGenerator3.cxx')
-rw-r--r-- | Source/cmGlobalUnixMakefileGenerator3.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/cmGlobalUnixMakefileGenerator3.cxx b/Source/cmGlobalUnixMakefileGenerator3.cxx index 75c2fb8..b240924 100644 --- a/Source/cmGlobalUnixMakefileGenerator3.cxx +++ b/Source/cmGlobalUnixMakefileGenerator3.cxx @@ -943,7 +943,7 @@ void cmGlobalUnixMakefileGenerator3::InitializeProgressMarks() { // This local generator includes the target. std::set<cmGeneratorTarget const*>& targetSet = - this->DirectoryTargetsMap[clg]; + this->DirectoryTargetsMap[clg->GetStateSnapshot()]; targetSet.insert(gt); // Add dependencies of the included target. An excluded @@ -992,7 +992,7 @@ cmGlobalUnixMakefileGenerator3 size_t count = 0; std::set<cmGeneratorTarget const*> emitted; std::set<cmGeneratorTarget const*> const& targets - = this->DirectoryTargetsMap[lg]; + = this->DirectoryTargetsMap[lg->GetStateSnapshot()]; for(std::set<cmGeneratorTarget const*>::const_iterator t = targets.begin(); t != targets.end(); ++t) { |