mirror of
https://github.com/reactos/reactos.git
synced 2025-07-11 04:34:15 +00:00
Put halmp.dll on CD
svn path=/trunk/; revision=16810
This commit is contained in:
parent
dc0201cafa
commit
24f28bb15b
11 changed files with 96 additions and 11 deletions
|
@ -237,6 +237,9 @@ MingwModuleHandler::InstanciateHandler (
|
|||
case RpcClient:
|
||||
handler = new MingwRpcClientModuleHandler ( module );
|
||||
break;
|
||||
case Alias:
|
||||
handler = new MingwAliasModuleHandler ( module );
|
||||
break;
|
||||
default:
|
||||
throw UnknownModuleTypeException (
|
||||
module.node.location,
|
||||
|
@ -2877,12 +2880,13 @@ MingwLiveIsoModuleHandler::OutputModuleCopyCommands ( string& livecdDirectory,
|
|||
continue;
|
||||
if ( m.installName.length () > 0 )
|
||||
{
|
||||
const Module& aliasedModule = backend->GetAliasedModuleOrModule ( m );
|
||||
string sourceFilename = MingwModuleHandler::PassThruCacheDirectory (
|
||||
NormalizeFilename ( m.GetPath () ),
|
||||
NormalizeFilename ( aliasedModule.GetPath () ),
|
||||
backend->outputDirectory );
|
||||
OutputCopyCommand ( sourceFilename,
|
||||
m.installName,
|
||||
livecdDirectory + SSEP + reactosDirectory + SSEP + m.installBase );
|
||||
m.installName,
|
||||
livecdDirectory + SSEP + reactosDirectory + SSEP + m.installBase );
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -3057,6 +3061,7 @@ MingwRpcServerModuleHandler::Process ()
|
|||
GenerateRules ();
|
||||
}
|
||||
|
||||
|
||||
MingwRpcClientModuleHandler::MingwRpcClientModuleHandler (
|
||||
const Module& module_ )
|
||||
|
||||
|
@ -3069,3 +3074,16 @@ MingwRpcClientModuleHandler::Process ()
|
|||
{
|
||||
GenerateRules ();
|
||||
}
|
||||
|
||||
|
||||
MingwAliasModuleHandler::MingwAliasModuleHandler (
|
||||
const Module& module_ )
|
||||
|
||||
: MingwModuleHandler ( module_ )
|
||||
{
|
||||
}
|
||||
|
||||
void
|
||||
MingwAliasModuleHandler::Process ()
|
||||
{
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue