]> git.saurik.com Git - wxWidgets.git/blobdiff - utils/makegen/makegen.cpp
wxMGL bugfixes
[wxWidgets.git] / utils / makegen / makegen.cpp
index 5013ffdfde1f58fe2870b038bf0038c9d4883023..d43572aadc9f0aa9fd7d378e163a3f73025b837e 100644 (file)
@@ -81,7 +81,9 @@ bool MakeGenApp::GenerateMakefile(const wxString& filename)
         return FALSE;
     }
 
-    wxFFile fileOut(m_outdir + filename, "w");
+    wxString fileOutName;
+    fileOutName << m_outdir << _T('/') << filename;
+    wxFFile fileOut(fileOutName, "w");
     if ( !fileOut.IsOpened() )
     {
         wxLogError(_T("Makefile '%s' couldn't be generated."), filename.c_str());
@@ -90,7 +92,7 @@ bool MakeGenApp::GenerateMakefile(const wxString& filename)
     }
 
     wxLogVerbose(_T("Generating '%s' for '%s'..."),
-                 (m_outdir + filename).c_str(), m_progname.c_str());
+                 fileOutName.c_str(), m_progname.c_str());
 
     size_t count = fileIn.GetLineCount();
     for ( size_t n = 0; n < count; n++ )