diff options
author | Brad King <brad.king@kitware.com> | 2014-01-15 21:39:42 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-01-15 21:39:42 (GMT) |
commit | 80e40485b7dd8805c0b54e79f55aa25c648a09f4 (patch) | |
tree | 492b18cee5e012045756b98292e294b71c09306f /Source | |
parent | 6d004976deeac00eb8ab3b26f407934110224352 (diff) | |
parent | 20e595aba813db064fa63b92af33472efe969392 (diff) | |
download | CMake-80e40485b7dd8805c0b54e79f55aa25c648a09f4.zip CMake-80e40485b7dd8805c0b54e79f55aa25c648a09f4.tar.gz CMake-80e40485b7dd8805c0b54e79f55aa25c648a09f4.tar.bz2 |
Merge branch 'ninja_fix_rerun' into release
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()), |