Fixed msvc project generation making duplicate project names.

svn path=/trunk/; revision=31007
This commit is contained in:
Gregor Brunmar 2007-12-04 19:53:47 +00:00
parent 714d0d6737
commit 6f48e39be2

View file

@ -272,7 +272,7 @@ std::string
MSVCBackend::VcprojFileName ( const Module& module ) const
{
return FixSeparatorForSystemCommand(
ReplaceExtension ( module.output->relative_path + "\\" + module.output->name, "_" + _get_vc_dir() + "_auto.vcproj" )
ReplaceExtension ( module.output->relative_path + "\\" + module.name, "_" + _get_vc_dir() + "_auto.vcproj" )
);
}