summaryrefslogtreecommitdiff
path: root/Source/cmWriteFileCommand.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2004-04-18 14:41:46 -0400
committerAndy Cedilnik <andy.cedilnik@kitware.com>2004-04-18 14:41:46 -0400
commit55a71ba572c54dbb3485a76e9615c1c8bf688fd4 (patch)
treeac692b4ef198284cf7c0e9b65ab854f93e7f865a /Source/cmWriteFileCommand.cxx
parentaf61b685839fae6af72ba4c4d42ebf39a7d1a324 (diff)
downloadcmake-55a71ba572c54dbb3485a76e9615c1c8bf688fd4.tar.gz
ENH: Add check for infinite loops. Make sure that files written using WRITE_FILE and FILE WRITE are not used as input files. Fixes Bug #678 - WRITE_FILE and FILE(WRITE...) lead to infinite loops
Diffstat (limited to 'Source/cmWriteFileCommand.cxx')
-rw-r--r--Source/cmWriteFileCommand.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/cmWriteFileCommand.cxx b/Source/cmWriteFileCommand.cxx
index 79a8b4698e..dbf14eca5b 100644
--- a/Source/cmWriteFileCommand.cxx
+++ b/Source/cmWriteFileCommand.cxx
@@ -55,6 +55,7 @@ bool cmWriteFileCommand::InitialPass(std::vector<std::string> const& args)
}
file << message << std::endl;
file.close();
+ m_Makefile->AddWrittenFile(fileName.c_str());
return true;
}