diff options
author | Brad King <brad.king@kitware.com> | 2008-04-30 17:42:40 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2008-04-30 17:42:40 (GMT) |
commit | 1381aab4b7c3f6149d87a673e2bd754e7eed4ac5 (patch) | |
tree | 7a2b80dd23612af1b9645de3690bd0d1cbe089ca /Source/cmMakefile.cxx | |
parent | 10c91ded4feda7eb027bc601f2047154cdcba776 (diff) | |
download | CMake-1381aab4b7c3f6149d87a673e2bd754e7eed4ac5.zip CMake-1381aab4b7c3f6149d87a673e2bd754e7eed4ac5.tar.gz CMake-1381aab4b7c3f6149d87a673e2bd754e7eed4ac5.tar.bz2 |
BUG: Remove check for files written by file(WRITE) being loaded.
- CMake 1.8 and below did not do the check but could get in
infinite loops due to the local generate step.
- CMake 2.0 added the check but failed to perform it in directories
with no targets (see bug #678).
- CMake 2.2 removed the local generate which fixed the problem but
did not remove the check.
- Between CMake 2.4 and 2.6.0rc6 the check was fixed to work even
when no targets appear in a directory (see bug #6923).
- Bottom line: the check is no longer needed.
Diffstat (limited to 'Source/cmMakefile.cxx')
-rw-r--r-- | Source/cmMakefile.cxx | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/Source/cmMakefile.cxx b/Source/cmMakefile.cxx index 4cd9d0a..bc60955 100644 --- a/Source/cmMakefile.cxx +++ b/Source/cmMakefile.cxx @@ -2796,33 +2796,6 @@ int cmMakefile::ConfigureFile(const char* infile, const char* outfile, return res; } -void cmMakefile::AddWrittenFile(const char* file) -{ this->GetCMakeInstance()->AddWrittenFile(file); } - -bool cmMakefile::HasWrittenFile(const char* file) -{ return this->GetCMakeInstance()->HasWrittenFile(file); } - -bool cmMakefile::CheckInfiniteLoops() -{ - std::vector<std::string>::iterator it; - for ( it = this->ListFiles.begin(); - it != this->ListFiles.end(); - ++ it ) - { - if ( this->HasWrittenFile(it->c_str()) ) - { - cmOStringStream str; - str << "File " << it->c_str() << - " is written by WRITE_FILE (or FILE WRITE) command and should " - "not be used as input to CMake. Please use CONFIGURE_FILE to " - "be safe. Refer to the note next to FILE WRITE command."; - cmSystemTools::Error(str.str().c_str()); - return false; - } - } - return true; -} - void cmMakefile::SetProperty(const char* prop, const char* value) { if (!prop) |