diff options
author | Orkun Tokdemir <ilhanorkuntokdemir@gmail.com> | 2023-06-14 15:32:02 (GMT) |
---|---|---|
committer | Orkun Tokdemir <ilhanorkuntokdemir@gmail.com> | 2023-09-13 13:58:47 (GMT) |
commit | 6d54c368599e379208f8f8e057a1724ac785d151 (patch) | |
tree | bca630618f5b25367dfd792adc0843a822f4d131 | |
parent | 972cfd1bc393c56d249f1a2fbb8602e5d0c5bb07 (diff) | |
download | CMake-6d54c368599e379208f8f8e057a1724ac785d151.zip CMake-6d54c368599e379208f8f8e057a1724ac785d151.tar.gz CMake-6d54c368599e379208f8f8e057a1724ac785d151.tar.bz2 |
Autogen: Fix typo
-rw-r--r-- | Source/cmQtAutoGenInitializer.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmQtAutoGenInitializer.cxx b/Source/cmQtAutoGenInitializer.cxx index b1d90ee..6ba5116 100644 --- a/Source/cmQtAutoGenInitializer.cxx +++ b/Source/cmQtAutoGenInitializer.cxx @@ -1240,15 +1240,15 @@ bool cmQtAutoGenInitializer::InitAutogenTarget() bool constexpr stdPipesUTF8 = true; cmCustomCommandLines commandLines; if (this->Makefile->GetSafeDefinition("CMAKE_CROSS_CONFIGS").empty()) { - std::string autugenInfoFileconfig; + std::string autogenInfoFileConfig; if (this->MultiConfig) { - autugenInfoFileconfig = "$<CONFIG>"; + autogenInfoFileConfig = "$<CONFIG>"; } else { - autugenInfoFileconfig = configs[0]; + autogenInfoFileConfig = configs[0]; } commandLines.push_back(cmMakeCommandLine( { cmSystemTools::GetCMakeCommand(), "-E", "cmake_autogen", - this->AutogenTarget.InfoFile, autugenInfoFileconfig })); + this->AutogenTarget.InfoFile, autogenInfoFileConfig })); } else { for (auto const& config : configs) { |