From 8e4d286e7b105407d523ccf745198d0400b5fdb3 Mon Sep 17 00:00:00 2001 From: Brad King Date: Fri, 16 Dec 2016 09:20:32 -0500 Subject: Fix typo in error message on missing required variable Reported-by: Albrecht Schlosser --- Source/cmMakefile.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index fccb486..cfc0495 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -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 ""; } -- cgit v0.12