summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2017-01-09 21:27:22 (GMT)
committerCMake Topic Stage <kwrobot@kitware.com>2017-01-09 21:27:22 (GMT)
commit0dabeb6024b352bc7d5f9e1dce63ad87186ce36f (patch)
treef0860ba5d69ce96d51ca7d87beaf8ad9e9a7778a
parenta0ed39ac2207edbda08b1459096d2c1bf757cc71 (diff)
parent8e4d286e7b105407d523ccf745198d0400b5fdb3 (diff)
downloadCMake-0dabeb6024b352bc7d5f9e1dce63ad87186ce36f.zip
CMake-0dabeb6024b352bc7d5f9e1dce63ad87186ce36f.tar.gz
CMake-0dabeb6024b352bc7d5f9e1dce63ad87186ce36f.tar.bz2
Merge topic 'fix-required-var-error-typo'
8e4d286e Fix typo in error message on missing required variable
-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 "";
}