Browse Source

ENH: For sanity, create directory before creating generated file stream

Andy Cedilnik 20 years ago
parent
commit
b59dd02911
1 changed files with 3 additions and 0 deletions
  1. 3 0
      Source/cmGeneratedFileStream.cxx

+ 3 - 0
Source/cmGeneratedFileStream.cxx

@@ -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());
 }
 }
 
 
 //----------------------------------------------------------------------------
 //----------------------------------------------------------------------------