diff options
author | Brad King <brad.king@kitware.com> | 2016-12-16 14:20:32 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2016-12-16 14:20:32 (GMT) |
commit | 8e4d286e7b105407d523ccf745198d0400b5fdb3 (patch) | |
tree | 0a436d07a61b2e12b98d40ecb31b0ff6770b3bb3 /Source/cmMakefile.cxx | |
parent | 0a9e4e08b5d275fa20190509d6b1448f360461a8 (diff) | |
download | CMake-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.cxx | 2 |
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 ""; } |