Generate SMP friendly temporary filenames

svn path=/trunk/; revision=15703
This commit is contained in:
Casper Hornstrup 2005-05-31 17:30:54 +00:00
parent e346b7e2ce
commit b4dae62ae5

View file

@ -912,8 +912,9 @@ MingwModuleHandler::GenerateWindresCommand (
dependencies += " " + NormalizeFilename ( module.xmlbuildFile );
string objectFilename =
GetObjectFilename ( sourceFilename, &clean_files );
string rciFilename = ros_temp + module.name + ".rci.tmp";
string resFilename = ros_temp + module.name + ".res.tmp";
string sourceFilenamePart = ReplaceExtension ( GetFilename ( sourceFilename ), "" );
string rciFilename = ros_temp + module.name + "." + sourceFilenamePart + ".rci.tmp";
string resFilename = ros_temp + module.name + "." + sourceFilenamePart + ".res.tmp";
if ( module.useWRC )
{
fprintf ( fMakefile,