diff options
author | Brad King <brad.king@kitware.com> | 2014-01-15 21:37:25 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-01-15 21:37:25 (GMT) |
commit | 20e595aba813db064fa63b92af33472efe969392 (patch) | |
tree | 173eb2029b09a8e399708690d711f41ab3a0fa6d /Source | |
parent | c515dc574879448d66e2c5a27b9807d95a27fefd (diff) | |
download | CMake-20e595aba813db064fa63b92af33472efe969392.zip CMake-20e595aba813db064fa63b92af33472efe969392.tar.gz CMake-20e595aba813db064fa63b92af33472efe969392.tar.bz2 |
Revert "Ninja: Track configured files so we can regenerate them."
Revert commit 4a6397a7 (Ninja: Track configured files so we can
regenerate them, 2013-06-17). The files reported by the method
cmMakefile::GetOutputFiles() must cause CMake to re-run only if they are
missing and without considering a timestamp. This is not the meaning of
the implicit dependencies field so Ninja re-runs CMake too often.
Another solution will have to be found to the original problem.
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmGlobalNinjaGenerator.cxx | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Source/cmGlobalNinjaGenerator.cxx b/Source/cmGlobalNinjaGenerator.cxx index 61d0272..1953546 100644 --- a/Source/cmGlobalNinjaGenerator.cxx +++ b/Source/cmGlobalNinjaGenerator.cxx @@ -1094,9 +1094,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()), |