Fix bootcd build, hope this fix is not too hackish...
authorColin Finck <colin@reactos.org>
Mon, 5 Nov 2007 20:36:56 +0000 (20:36 +0000)
committerColin Finck <colin@reactos.org>
Mon, 5 Nov 2007 20:36:56 +0000 (20:36 +0000)
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.

svn path=/trunk/; revision=30199

reactos/tools/rbuild/module.cpp

index dd49f7c..34305d1 100644 (file)
@@ -991,7 +991,7 @@ Module::GetDefaultModuleExtension () const
                case BootLoader:
                        return ".sys";
                case BootSector:
-                       return ".o";
+                       return "_" + this->name + ".o";
                case Iso:
                case LiveIso:
                case IsoRegTest: