summaryrefslogtreecommitdiff
path: root/Source/cmAuxSourceDirectoryCommand.cxx
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2002-02-06 10:42:15 -0500
committerBill Hoffman <bill.hoffman@kitware.com>2002-02-06 10:42:15 -0500
commitcaa49f2a1e8ed8e73f53ed76ec65c5d089eccab5 (patch)
tree9ddaec7e418b29514c1c501811a116a5b2c95296 /Source/cmAuxSourceDirectoryCommand.cxx
parent84f6fdd69ff02dda5ff96344cde8c5df5e1be0e2 (diff)
downloadcmake-caa49f2a1e8ed8e73f53ed76ec65c5d089eccab5.tar.gz
BUG: remove depend on directory because it is not supported by all makes
Diffstat (limited to 'Source/cmAuxSourceDirectoryCommand.cxx')
-rw-r--r--Source/cmAuxSourceDirectoryCommand.cxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/Source/cmAuxSourceDirectoryCommand.cxx b/Source/cmAuxSourceDirectoryCommand.cxx
index 00e974f2f2..17ccff02be 100644
--- a/Source/cmAuxSourceDirectoryCommand.cxx
+++ b/Source/cmAuxSourceDirectoryCommand.cxx
@@ -31,10 +31,6 @@ bool cmAuxSourceDirectoryCommand::InitialPass(std::vector<std::string> const& ar
std::string tdir = m_Makefile->GetCurrentDirectory();
tdir += "/";
tdir += templateDirectory;
- // The Makefile should be dependent on the directory's last mod date,
- // so that if a file is added or removed from the directory, it will
- // be rescanned, and the makefile rebuilt.
- m_Makefile->AddCMakeDependFile(tdir.c_str());
// Load all the files in the directory
cmDirectory dir;
if(dir.Load(tdir.c_str()))