diff options
author | Brad King <brad.king@kitware.com> | 2011-03-01 20:30:38 (GMT) |
---|---|---|
committer | CMake Topic Stage <kwrobot@kitware.com> | 2011-03-01 20:30:38 (GMT) |
commit | 9a7c6a3cc49131091f5aa9cd36b81cb42ad15a40 (patch) | |
tree | e0e021c9dce68c3ed728635c02f7b7abebd0e275 /Source | |
parent | bb745612bc40aa6d2473f3a5fc2cd45db3a16761 (diff) | |
parent | c3e452e944f915975d13d89023cd43ed3dba5221 (diff) | |
download | CMake-9a7c6a3cc49131091f5aa9cd36b81cb42ad15a40.zip CMake-9a7c6a3cc49131091f5aa9cd36b81cb42ad15a40.tar.gz CMake-9a7c6a3cc49131091f5aa9cd36b81cb42ad15a40.tar.bz2 |
Merge topic 'require-cmake-2.6.3'
c3e452e Require at least CMake 2.6.3 to build current CMake
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmFileCommand.cxx | 30 |
1 files changed, 7 insertions, 23 deletions
diff --git a/Source/cmFileCommand.cxx b/Source/cmFileCommand.cxx index a72feb1..d28de08 100644 --- a/Source/cmFileCommand.cxx +++ b/Source/cmFileCommand.cxx @@ -1711,7 +1711,7 @@ protected: { DoingType = DoingLast1, DoingRename, - DoingSelf24 + DoingLast2 }; virtual bool CheckKeyword(std::string const& arg); virtual bool CheckValue(std::string const& arg); @@ -1850,22 +1850,12 @@ bool cmFileInstaller::CheckKeyword(std::string const& arg) else if(arg == "COMPONENTS" || arg == "CONFIGURATIONS" || arg == "PROPERTIES") { - if(this->Makefile->IsOn("CMAKE_INSTALL_SELF_2_4")) - { - // When CMake 2.4 builds this CMake version we need to support - // the install scripts it generates since it asks this CMake - // to install itself using the rules it generated. - this->Doing = DoingSelf24; - } - else - { - cmOStringStream e; - e << "INSTALL called with old-style " << arg << " argument. " - << "This script was generated with an older version of CMake. " - << "Re-run this cmake version on your build tree."; - this->FileCommand->SetError(e.str().c_str()); - this->Doing = DoingError; - } + cmOStringStream e; + e << "INSTALL called with old-style " << arg << " argument. " + << "This script was generated with an older version of CMake. " + << "Re-run this cmake version on your build tree."; + this->FileCommand->SetError(e.str().c_str()); + this->Doing = DoingError; } else { @@ -1888,12 +1878,6 @@ bool cmFileInstaller::CheckValue(std::string const& arg) case DoingRename: this->Rename = arg; break; - case DoingSelf24: - // Ignore these arguments for compatibility. This should be - // reached only when CMake 2.4 is installing the current - // CMake. It can be removed when CMake 2.6 or higher is - // required to build CMake. - break; default: return this->cmFileCopier::CheckValue(arg); } |