BUG: remove depend on directory because it is not supported by all makes

This commit is contained in:
Bill Hoffman 2002-02-06 10:42:15 -05:00
parent 84f6fdd69f
commit caa49f2a1e
1 changed files with 0 additions and 4 deletions

View File

@ -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()))