Attempt to fix the build by correcting the hardcoded filenames for "isoboot"

svn path=/trunk/; revision=30194
This commit is contained in:
Colin Finck 2007-11-05 18:55:15 +00:00
parent 6af7d07b77
commit c41f093eb9

View file

@ -3484,8 +3484,8 @@ MingwIsoModuleHandler::GenerateIsoModuleTarget ()
FileLocation isoboot ( OutputDirectory, FileLocation isoboot ( OutputDirectory,
"boot" + sSep + "freeldr" + sSep + "bootsect", "boot" + sSep + "freeldr" + sSep + "bootsect",
module.type == IsoRegTest module.type == IsoRegTest
? "isobtrt.o" ? "isobtrt_isobtrt.o"
: "isoboot.o" ); : "isoboot_isoboot.o" );
vSourceFiles.push_back ( isoboot ); vSourceFiles.push_back ( isoboot );
// prepare reactos.dff and reactos.inf // prepare reactos.dff and reactos.inf
@ -3671,12 +3671,12 @@ MingwLiveIsoModuleHandler::GenerateLiveIsoModuleTarget ()
if (module.name == "livecdregtest") if (module.name == "livecdregtest")
{ {
bootloader = "isobtrt.o"; bootloader = "isobtrt_isobtrt.o";
IsoName = "ReactOS-LiveCD-RegTest.iso"; IsoName = "ReactOS-LiveCD-RegTest.iso";
} }
else else
{ {
bootloader = "isoboot.o"; bootloader = "isoboot_isoboot.o";
IsoName = "ReactOS-LiveCD.iso"; IsoName = "ReactOS-LiveCD.iso";
} }