Fix bug. Was using unexpanded var instead of copy

This commit is contained in:
Sebastien Barre 2001-11-08 11:50:28 -05:00
parent 53f8721f99
commit 9ad598a9f0
1 changed files with 1 additions and 1 deletions

View File

@ -71,7 +71,7 @@ bool cmSourceFilesCommand::InitialPass(std::vector<std::string> const& args)
} }
else else
{ {
file.SetName(i->c_str(), m_Makefile->GetCurrentDirectory(), file.SetName(copy.c_str(), m_Makefile->GetCurrentDirectory(),
m_Makefile->GetSourceExtensions(), m_Makefile->GetSourceExtensions(),
m_Makefile->GetHeaderExtensions()); m_Makefile->GetHeaderExtensions());
} }