Fix typo in error message on missing required variable

Reported-by: Albrecht Schlosser <AlbrechtS.fltk@online.de>
This commit is contained in:
Brad King
2016-12-16 09:20:32 -05:00
parent 0a9e4e08b5
commit 8e4d286e7b
+1 -1
View File
@@ -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 "";
}