mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-06 14:19:59 -05:00
Fix typo in error message on missing required variable
Reported-by: Albrecht Schlosser <AlbrechtS.fltk@online.de>
This commit is contained in:
@@ -2215,7 +2215,7 @@ const char* cmMakefile::GetRequiredDefinition(const std::string& name) const
|
||||
const char* ret = this->GetDefinition(name);
|
||||
if (!ret) {
|
||||
cmSystemTools::Error("Error required internal CMake variable not "
|
||||
"set, cmake may be not be built correctly.\n",
|
||||
"set, cmake may not be built correctly.\n",
|
||||
"Missing variable is:\n", name.c_str());
|
||||
return "";
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user