Don't include full path for --dllname
Modified: branches/xmlbuildsystem/reactos/tools/rbuild/backend/mingw/modulehandler.cpp

Modified: branches/xmlbuildsystem/reactos/tools/rbuild/backend/mingw/modulehandler.cpp
--- branches/xmlbuildsystem/reactos/tools/rbuild/backend/mingw/modulehandler.cpp	2005-01-16 13:51:33 UTC (rev 13078)
+++ branches/xmlbuildsystem/reactos/tools/rbuild/backend/mingw/modulehandler.cpp	2005-01-16 14:23:35 UTC (rev 13079)
@@ -950,6 +950,7 @@
 MingwKernelModuleHandler::GenerateKernelModuleTarget ( const Module& module )
 {
 	static string ros_junk ( "$(ROS_TEMPORARY)" );
+	string targetName ( module.GetTargetName () );
 	string target ( FixupTargetFilename (module.GetPath ()) );
 	string workingDirectory = GetWorkingDirectory ();
 	string objectsMacro = GetObjectsMacro ( module );
@@ -981,7 +982,7 @@
 	          junk_tmp.c_str () );
 	fprintf ( fMakefile,
 	          "\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 (),
 	          temp_exp.c_str () );
 	fprintf ( fMakefile,