diff options
author | Brad King <brad.king@kitware.com> | 2009-09-03 12:26:18 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-09-03 12:26:18 (GMT) |
commit | 2ea28107377b83852a9bdff83ab1bf19653600ee (patch) | |
tree | 5d43c1ee4459b56228f400a3ebd05a42d003d7c3 | |
parent | 3ba3f9e9175faac3a52be84d6dae6906caa63c09 (diff) | |
download | CMake-2ea28107377b83852a9bdff83ab1bf19653600ee.zip CMake-2ea28107377b83852a9bdff83ab1bf19653600ee.tar.gz CMake-2ea28107377b83852a9bdff83ab1bf19653600ee.tar.bz2 |
Fix typo in REQUIRED_ALWAYS policy error message
-rw-r--r-- | Source/cmPolicies.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmPolicies.cxx b/Source/cmPolicies.cxx index 211f351..e8c7fcf 100644 --- a/Source/cmPolicies.cxx +++ b/Source/cmPolicies.cxx @@ -699,7 +699,7 @@ cmPolicies::DiagnoseAncientPolicies(std::vector<PolicyID> const& ancient, cmOStringStream e; e << "The project requests behavior compatible with CMake version \"" << majorVer << "." << minorVer << "." << patchVer - << "\", which requires OLD the behavior for some policies:\n"; + << "\", which requires the OLD behavior for some policies:\n"; for(std::vector<PolicyID>::const_iterator i = ancient.begin(); i != ancient.end(); ++i) { |