diff options
author | Craig Scott <craig.scott@crascit.com> | 2021-02-03 12:02:36 (GMT) |
---|---|---|
committer | Craig Scott <craig.scott@crascit.com> | 2021-02-03 12:10:08 (GMT) |
commit | df08f8df3027db25eb1cb75fb6017c3a8c046674 (patch) | |
tree | 51ed49fa8412c6cb056e26fd3cf868e61170fed4 /Source/cmComputeLinkInformation.cxx | |
parent | 375b307bae4513b69b9f86549a094da7f2e8b3a7 (diff) | |
download | CMake-df08f8df3027db25eb1cb75fb6017c3a8c046674.zip CMake-df08f8df3027db25eb1cb75fb6017c3a8c046674.tar.gz CMake-df08f8df3027db25eb1cb75fb6017c3a8c046674.tar.bz2 |
cmComputeLinkInformation: Fix misspelt private variable name
Diffstat (limited to 'Source/cmComputeLinkInformation.cxx')
-rw-r--r-- | Source/cmComputeLinkInformation.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/cmComputeLinkInformation.cxx b/Source/cmComputeLinkInformation.cxx index 6e1fac0..d1680ad 100644 --- a/Source/cmComputeLinkInformation.cxx +++ b/Source/cmComputeLinkInformation.cxx @@ -1336,8 +1336,8 @@ void cmComputeLinkInformation::ComputeFrameworkInfo() "CMAKE_", this->LinkLanguage, "_IMPLICIT_LINK_FRAMEWORK_DIRECTORIES"); this->Makefile->GetDefExpandList(implicitDirVar, implicitDirVec); - this->FrameworkPathsEmmitted.insert(implicitDirVec.begin(), - implicitDirVec.end()); + this->FrameworkPathsEmitted.insert(implicitDirVec.begin(), + implicitDirVec.end()); // Regular expression to extract a framework path and name. this->SplitFramework.compile("(.*)/(.*)\\.framework$"); @@ -1345,7 +1345,7 @@ void cmComputeLinkInformation::ComputeFrameworkInfo() void cmComputeLinkInformation::AddFrameworkPath(std::string const& p) { - if (this->FrameworkPathsEmmitted.insert(p).second) { + if (this->FrameworkPathsEmitted.insert(p).second) { this->FrameworkPaths.push_back(p); } } |