mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
Fix bug. Was using unexpanded var instead of copy
This commit is contained in:
@@ -71,7 +71,7 @@ bool cmSourceFilesCommand::InitialPass(std::vector<std::string> const& args)
|
||||
}
|
||||
else
|
||||
{
|
||||
file.SetName(i->c_str(), m_Makefile->GetCurrentDirectory(),
|
||||
file.SetName(copy.c_str(), m_Makefile->GetCurrentDirectory(),
|
||||
m_Makefile->GetSourceExtensions(),
|
||||
m_Makefile->GetHeaderExtensions());
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user