diff options
author | Brad King <brad.king@kitware.com> | 2015-03-18 20:44:05 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2015-03-20 17:32:55 (GMT) |
commit | ad094f435e005b484771acae36b79895c8e36e3f (patch) | |
tree | b94dbb26b66d9bc144a82f8f3a5aec48f7b65ed8 | |
parent | 82a37d3ce5606f578997304cefc6aded15f2535c (diff) | |
download | CMake-ad094f435e005b484771acae36b79895c8e36e3f.zip CMake-ad094f435e005b484771acae36b79895c8e36e3f.tar.gz CMake-ad094f435e005b484771acae36b79895c8e36e3f.tar.bz2 |
cmGlobalNinjaGenerator: Fix spelling of "unknown"
-rw-r--r-- | Source/cmGlobalNinjaGenerator.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmGlobalNinjaGenerator.cxx b/Source/cmGlobalNinjaGenerator.cxx index ac7a6eb..1286793 100644 --- a/Source/cmGlobalNinjaGenerator.cxx +++ b/Source/cmGlobalNinjaGenerator.cxx @@ -1041,21 +1041,21 @@ void cmGlobalNinjaGenerator::WriteUnknownExplicitDependencies(std::ostream& os) //and knownDependencies so no matter if unix or windows paths they //should all match now. - std::vector<std::string> unkownExplicitDepends; + std::vector<std::string> unknownExplicitDepends; this->CombinedCustomCommandExplicitDependencies.erase("all"); std::set_difference(this->CombinedCustomCommandExplicitDependencies.begin(), this->CombinedCustomCommandExplicitDependencies.end(), knownDependencies.begin(), knownDependencies.end(), - std::back_inserter(unkownExplicitDepends)); + std::back_inserter(unknownExplicitDepends)); std::string const rootBuildDirectory = this->GetCMakeInstance()->GetHomeOutputDirectory(); for (std::vector<std::string>::const_iterator - i = unkownExplicitDepends.begin(); - i != unkownExplicitDepends.end(); + i = unknownExplicitDepends.begin(); + i != unknownExplicitDepends.end(); ++i) { //verify the file is in the build directory |