Fix bug. Was using unexpanded var instead of copy
This commit is contained in:
parent
53f8721f99
commit
9ad598a9f0
|
@ -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());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue