diff options
author | Brad King <brad.king@kitware.com> | 2009-10-02 18:04:57 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2009-10-02 18:04:57 (GMT) |
commit | 5837f4a613254ac578b957405a0af87a9473a676 (patch) | |
tree | ca54eb1c7d9ff392ea930f8a386e8a47493bbf55 /Source/cmPolicies.cxx | |
parent | b4ace1cca0c3e0c77e7c66d7a2cb6d7fb6be7258 (diff) | |
download | CMake-5837f4a613254ac578b957405a0af87a9473a676.zip CMake-5837f4a613254ac578b957405a0af87a9473a676.tar.gz CMake-5837f4a613254ac578b957405a0af87a9473a676.tar.bz2 |
Fix documentation of CMP0012 and CMP0013 versions
These policies were originally developed during the 2.7.x series and
intended for 2.6.5. There was never a 2.6.5 release, so we should refer
to 2.8.0 instead.
Diffstat (limited to 'Source/cmPolicies.cxx')
-rw-r--r-- | Source/cmPolicies.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/cmPolicies.cxx b/Source/cmPolicies.cxx index ffba3cb..b6bb116 100644 --- a/Source/cmPolicies.cxx +++ b/Source/cmPolicies.cxx @@ -359,7 +359,7 @@ cmPolicies::cmPolicies() this->DefinePolicy( CMP0012, "CMP0012", "The if() command can recognize named boolean constants.", - "In CMake versions prior to 2.6.5 the only boolean constants were 0 " + "In CMake versions 2.6.4 and lower the only boolean constants were 0 " "and 1. Other boolean constants such as true, false, yes, no, " "on, off, y, n, notfound, ignore (all case insensitive) were recognized " "in some cases but not all. In later versions of cmake these values are " @@ -369,7 +369,7 @@ cmPolicies::cmPolicies() "such as true and to dereference them. " "The NEW behavior for this policy is to treat strings like true as a " "boolean constant.", - 2,6,5, cmPolicies::WARN); + 2,8,0, cmPolicies::WARN); this->DefinePolicy( CMP0013, "CMP0013", @@ -380,13 +380,13 @@ cmPolicies::cmPolicies() "overwritten in the build tree and could lead to strange behavior. " "CMake 2.6.4 and above explicitly detect duplicate binary directories. " "CMake 2.6.4 always considers this case an error. " - "In CMake 2.6.5 and above this policy determines whether or not " + "In CMake 2.8.0 and above this policy determines whether or not " "the case is an error. " "The OLD behavior for this policy is to allow duplicate binary " "directories. " "The NEW behavior for this policy is to disallow duplicate binary " "directories with an error.", - 2,6,5, cmPolicies::WARN); + 2,8,0, cmPolicies::WARN); this->DefinePolicy( CMP0014, "CMP0014", |