ENH: For sanity, create directory before creating generated file stream
This commit is contained in:
parent
8d150e0bfb
commit
b59dd02911
|
@ -146,6 +146,9 @@ void cmGeneratedFileStreamBase::Open(const char* name)
|
||||||
|
|
||||||
// Make sure the temporary file that will be used is not present.
|
// Make sure the temporary file that will be used is not present.
|
||||||
cmSystemTools::RemoveFile(m_TempName.c_str());
|
cmSystemTools::RemoveFile(m_TempName.c_str());
|
||||||
|
|
||||||
|
std::string dir = cmSystemTools::GetFilenamePath(m_TempName);
|
||||||
|
cmSystemTools::MakeDirectory(dir.c_str());
|
||||||
}
|
}
|
||||||
|
|
||||||
//----------------------------------------------------------------------------
|
//----------------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in New Issue