mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 22:02:58 +00:00
Also use the module name in idl object files
svn path=/trunk/; revision=30188
This commit is contained in:
parent
ff1da0b87a
commit
bcd746b012
1 changed files with 2 additions and 2 deletions
|
@ -513,9 +513,9 @@ MingwModuleHandler::GetObjectFilename (
|
||||||
else if ( extension == ".idl" || extension == ".IDL" )
|
else if ( extension == ".idl" || extension == ".IDL" )
|
||||||
{
|
{
|
||||||
if ( module.type == RpcServer )
|
if ( module.type == RpcServer )
|
||||||
newExtension = "_s.o";
|
newExtension = "_s_" + module.name + ".o";
|
||||||
else if ( module.type == RpcClient )
|
else if ( module.type == RpcClient )
|
||||||
newExtension = "_c.o";
|
newExtension = "_c_" + module.name + ".o";
|
||||||
else
|
else
|
||||||
newExtension = ".h";
|
newExtension = ".h";
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue