summaryrefslogtreecommitdiffstats
path: root/Source/cmake.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2003-08-07 20:11:49 (GMT)
committerBrad King <brad.king@kitware.com>2003-08-07 20:11:49 (GMT)
commit1de2bba717076e9a74466edabc0eac3aeb8a185d (patch)
treed7e121d7ea34583ecb644cb2eff9472f0a3e3afe /Source/cmake.cxx
parent6c65c77d350cab78832b6a2e20fec655a4e39969 (diff)
downloadCMake-1de2bba717076e9a74466edabc0eac3aeb8a185d.zip
CMake-1de2bba717076e9a74466edabc0eac3aeb8a185d.tar.gz
CMake-1de2bba717076e9a74466edabc0eac3aeb8a185d.tar.bz2
BUG: Fixed typo in error message.
Diffstat (limited to 'Source/cmake.cxx')
-rw-r--r--Source/cmake.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmake.cxx b/Source/cmake.cxx
index ab3bfae..9245aa9 100644
--- a/Source/cmake.cxx
+++ b/Source/cmake.cxx
@@ -53,7 +53,7 @@ void cmNeedBackwardsCompatibility(const std::string& variable,
{
if (access_type == cmVariableWatch::UNKNOWN_VARIABLE_READ_ACCESS)
{
- std::string message = "Error: An atttempt was made to access a variable: ";
+ std::string message = "An attempt was made to access a variable: ";
message += variable;
message += " that has not been defined. Some variables were always defined by CMake in versions prior to 1.6. To fix this you might need to set the cache value of CMAKE_BACKWARDS_COMPATIBILITY to 1.4 or less. If you are writing a CMakeList file, (or have already set CMAKE_BACKWARDS_COMPATABILITY to 1.4 or less) then you probably need to include a CMake module to test for the feature this variable defines.";
cmSystemTools::Error(message.c_str());