Merge topic 'ninja_fix_rerun'

20e595ab Revert "Ninja: Track configured files so we can regenerate them."
This commit is contained in:
Brad King 2014-01-16 09:24:15 -05:00 committed by CMake Topic Stage
commit 9465242d01
1 changed files with 0 additions and 3 deletions

View File

@ -1115,9 +1115,6 @@ void cmGlobalNinjaGenerator::WriteTargetRebuildManifest(std::ostream& os)
this->LocalGenerators.begin(); i != this->LocalGenerators.end(); ++i) {
const std::vector<std::string>& lf = (*i)->GetMakefile()->GetListFiles();
implicitDeps.insert(implicitDeps.end(), lf.begin(), lf.end());
const std::vector<std::string>& of = (*i)->GetMakefile()->GetOutputFiles();
implicitDeps.insert(implicitDeps.end(), of.begin(), of.end());
}
std::sort(implicitDeps.begin(), implicitDeps.end());
implicitDeps.erase(std::unique(implicitDeps.begin(), implicitDeps.end()),