summaryrefslogtreecommitdiffstats
path: root/Source/cmMakefile.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2016-12-16 14:20:32 (GMT)
committerBrad King <brad.king@kitware.com>2016-12-16 14:20:32 (GMT)
commit8e4d286e7b105407d523ccf745198d0400b5fdb3 (patch)
tree0a436d07a61b2e12b98d40ecb31b0ff6770b3bb3 /Source/cmMakefile.cxx
parent0a9e4e08b5d275fa20190509d6b1448f360461a8 (diff)
downloadCMake-8e4d286e7b105407d523ccf745198d0400b5fdb3.zip
CMake-8e4d286e7b105407d523ccf745198d0400b5fdb3.tar.gz
CMake-8e4d286e7b105407d523ccf745198d0400b5fdb3.tar.bz2
Fix typo in error message on missing required variable
Reported-by: Albrecht Schlosser <AlbrechtS.fltk@online.de>
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r--Source/cmMakefile.cxx2
1 files changed, 1 insertions, 1 deletions
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 "";
}