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?re…
==============================================================================
--- 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: