[ros-diffs] [cfinck] 30199: Fix bootcd build, hope this fix is not too hackish... Unfortunately, the backend only has full control over the object filenames, but not over the output filename. Therefore I had to place the change in the general backend-independent "module.cpp" file.

cfinck at svn.reactos.org cfinck at svn.reactos.org
Mon Nov 5 21:36:56 CET 2007


Author: cfinck
Date: Mon Nov  5 23:36:56 2007
New Revision: 30199

URL: http://svn.reactos.org/svn/reactos?rev=30199&view=rev
Log:
Fix bootcd build, hope this fix is not too hackish...
Unfortunately, the backend only has full control over the object filenames, but not over the output filename. Therefore I had to place the change in the general backend-independent "module.cpp" file.

Modified:
    trunk/reactos/tools/rbuild/module.cpp

Modified: trunk/reactos/tools/rbuild/module.cpp
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/tools/rbuild/module.cpp?rev=30199&r1=30198&r2=30199&view=diff
==============================================================================
--- trunk/reactos/tools/rbuild/module.cpp (original)
+++ trunk/reactos/tools/rbuild/module.cpp Mon Nov  5 23:36:56 2007
@@ -991,7 +991,7 @@
 		case BootLoader:
 			return ".sys";
 		case BootSector:
-			return ".o";
+			return "_" + this->name + ".o";
 		case Iso:
 		case LiveIso:
 		case IsoRegTest:




More information about the Ros-diffs mailing list