diff --git a/Source/cmGlobalUnixMakefileGenerator3.cxx b/Source/cmGlobalUnixMakefileGenerator3.cxx index f8dee6289..75c2fb813 100644 --- a/Source/cmGlobalUnixMakefileGenerator3.cxx +++ b/Source/cmGlobalUnixMakefileGenerator3.cxx @@ -921,7 +921,7 @@ cmGlobalUnixMakefileGenerator3 // generator directory level. void cmGlobalUnixMakefileGenerator3::InitializeProgressMarks() { - this->LocalGeneratorToTargetMap.clear(); + this->DirectoryTargetsMap.clear(); // Loop over all targets in all local generators. for(std::vector::const_iterator lgi = this->LocalGenerators.begin(); @@ -943,7 +943,7 @@ void cmGlobalUnixMakefileGenerator3::InitializeProgressMarks() { // This local generator includes the target. std::set& targetSet = - this->LocalGeneratorToTargetMap[clg]; + this->DirectoryTargetsMap[clg]; targetSet.insert(gt); // Add dependencies of the included target. An excluded @@ -992,7 +992,7 @@ cmGlobalUnixMakefileGenerator3 size_t count = 0; std::set emitted; std::set const& targets - = this->LocalGeneratorToTargetMap[lg]; + = this->DirectoryTargetsMap[lg]; for(std::set::const_iterator t = targets.begin(); t != targets.end(); ++t) { diff --git a/Source/cmGlobalUnixMakefileGenerator3.h b/Source/cmGlobalUnixMakefileGenerator3.h index a8f99dd8d..7601cc48a 100644 --- a/Source/cmGlobalUnixMakefileGenerator3.h +++ b/Source/cmGlobalUnixMakefileGenerator3.h @@ -208,7 +208,7 @@ private: virtual std::string GetEditCacheCommand() const; std::map > - LocalGeneratorToTargetMap; + DirectoryTargetsMap; virtual void InitializeProgressMarks(); };