fixing OutputFile in *.vcproj files
Modified: trunk/reactos/tools/rbuild/backend/msvc/vcprojmaker.cpp
_____
Modified: trunk/reactos/tools/rbuild/backend/msvc/vcprojmaker.cpp
--- trunk/reactos/tools/rbuild/backend/msvc/vcprojmaker.cpp
2005-10-20 18:17:06 UTC (rev 18642)
+++ trunk/reactos/tools/rbuild/backend/msvc/vcprojmaker.cpp
2005-10-20 18:55:45 UTC (rev 18643)
@@ -284,7 +284,7 @@
{
fprintf ( OUT, "\t\t\t<Tool\r\n" );
fprintf ( OUT,
"\t\t\t\tName=\"VCLibrarianTool\"\r\n" );
- fprintf ( OUT,
"\t\t\t\tOutputFile=\"$(OutDir)/%s.%s\"/>\r\n",
module.name.c_str(),
module_type.c_str() );
+ fprintf ( OUT,
"\t\t\t\tOutputFile=\"$(OutDir)/%s%s\"/>\r\n",
module.name.c_str(),
module_type.c_str() );
}
else
{
@@ -300,7 +300,7 @@
}
fprintf ( OUT, "\"\r\n" );
- fprintf ( OUT,
"\t\t\t\tOutputFile=\"$(OutDir)/%s.%s\"\r\n", module.name.c_str(),
module_type.c_str() );
+ fprintf ( OUT,
"\t\t\t\tOutputFile=\"$(OutDir)/%s%s\"\r\n", module.name.c_str(),
module_type.c_str() );
fprintf ( OUT,
"\t\t\t\tLinkIncremental=\"%d\"\r\n", debug ? 2 : 1 );
fprintf ( OUT,
"\t\t\t\tGenerateDebugInformation=\"TRUE\"\r\n" );
Show replies by date