mirror of
https://github.com/reactos/reactos.git
synced 2025-07-27 23:03:23 +00:00
Don't include full path for --dllname
svn path=/branches/xmlbuildsystem/; revision=13079
This commit is contained in:
parent
40a6da67c4
commit
fd7f52294b
1 changed files with 2 additions and 1 deletions
|
@ -950,6 +950,7 @@ void
|
||||||
MingwKernelModuleHandler::GenerateKernelModuleTarget ( const Module& module )
|
MingwKernelModuleHandler::GenerateKernelModuleTarget ( const Module& module )
|
||||||
{
|
{
|
||||||
static string ros_junk ( "$(ROS_TEMPORARY)" );
|
static string ros_junk ( "$(ROS_TEMPORARY)" );
|
||||||
|
string targetName ( module.GetTargetName () );
|
||||||
string target ( FixupTargetFilename (module.GetPath ()) );
|
string target ( FixupTargetFilename (module.GetPath ()) );
|
||||||
string workingDirectory = GetWorkingDirectory ();
|
string workingDirectory = GetWorkingDirectory ();
|
||||||
string objectsMacro = GetObjectsMacro ( module );
|
string objectsMacro = GetObjectsMacro ( module );
|
||||||
|
@ -981,7 +982,7 @@ MingwKernelModuleHandler::GenerateKernelModuleTarget ( const Module& module )
|
||||||
junk_tmp.c_str () );
|
junk_tmp.c_str () );
|
||||||
fprintf ( fMakefile,
|
fprintf ( fMakefile,
|
||||||
"\t${dlltool} --dllname %s --base-file %s --def ntoskrnl/ntoskrnl.def --output-exp %s --kill-at\n",
|
"\t${dlltool} --dllname %s --base-file %s --def ntoskrnl/ntoskrnl.def --output-exp %s --kill-at\n",
|
||||||
target.c_str (),
|
targetName.c_str (),
|
||||||
base_tmp.c_str (),
|
base_tmp.c_str (),
|
||||||
temp_exp.c_str () );
|
temp_exp.c_str () );
|
||||||
fprintf ( fMakefile,
|
fprintf ( fMakefile,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue