ENH: configure file will assume start source dir if a full path is not provided
This commit is contained in:
parent
13e99490fb
commit
f3ed62b75a
@ -88,7 +88,14 @@ void cmConfigureFileCommand::FinalPass()
|
|||||||
|
|
||||||
int cmConfigureFileCommand::ConfigureFile()
|
int cmConfigureFileCommand::ConfigureFile()
|
||||||
{
|
{
|
||||||
return m_Makefile->ConfigureFile(m_InputFile.c_str(),
|
std::string inFile = m_InputFile;
|
||||||
|
if (!cmSystemTools::FileIsFullPath(inFile.c_str()))
|
||||||
|
{
|
||||||
|
inFile = m_Makefile->GetStartDirectory();
|
||||||
|
inFile += "/";
|
||||||
|
inFile += m_InputFile;
|
||||||
|
}
|
||||||
|
return m_Makefile->ConfigureFile(inFile.c_str(),
|
||||||
m_OuputFile.c_str(),
|
m_OuputFile.c_str(),
|
||||||
m_CopyOnly,
|
m_CopyOnly,
|
||||||
m_AtOnly,
|
m_AtOnly,
|
||||||
|
Loading…
Reference in New Issue
Block a user