cmMakefile: Store unconfigured cmMakefiles.

Not cmLocalGenerators.
This commit is contained in:
Stephen Kelly 2015-06-03 00:55:00 +02:00 committed by Brad King
parent d65e01235d
commit 4e8f242d17
2 changed files with 5 additions and 5 deletions

View File

@ -1598,13 +1598,13 @@ void cmMakefile::Configure()
this->ProcessBuildsystemFile(currentStart.c_str());
// at the end handle any old style subdirs
std::vector<cmLocalGenerator*> subdirs = this->UnConfiguredDirectories;
std::vector<cmMakefile*> subdirs = this->UnConfiguredDirectories;
// for each subdir recurse
std::vector<cmLocalGenerator*>::iterator sdi = subdirs.begin();
std::vector<cmMakefile*>::iterator sdi = subdirs.begin();
for (; sdi != subdirs.end(); ++sdi)
{
this->ConfigureSubDirectory((*sdi)->GetMakefile());
this->ConfigureSubDirectory(*sdi);
}
this->AddCMakeDependFilesFromUser();
@ -1699,7 +1699,7 @@ void cmMakefile::AddSubDirectory(const std::string& srcPath,
}
else
{
this->UnConfiguredDirectories.push_back(lg2);
this->UnConfiguredDirectories.push_back(lg2->GetMakefile());
}
}

View File

@ -922,7 +922,7 @@ private:
mutable cmsys::RegularExpression cmAtVarRegex;
mutable cmsys::RegularExpression cmNamedCurly;
std::vector<cmLocalGenerator*> UnConfiguredDirectories;
std::vector<cmMakefile*> UnConfiguredDirectories;
cmPropertyMap Properties;