mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
Attempt to fix the build by correcting the hardcoded filenames for "isoboot"
svn path=/trunk/; revision=30194
This commit is contained in:
parent
6af7d07b77
commit
c41f093eb9
1 changed files with 4 additions and 4 deletions
|
@ -3484,8 +3484,8 @@ MingwIsoModuleHandler::GenerateIsoModuleTarget ()
|
|||
FileLocation isoboot ( OutputDirectory,
|
||||
"boot" + sSep + "freeldr" + sSep + "bootsect",
|
||||
module.type == IsoRegTest
|
||||
? "isobtrt.o"
|
||||
: "isoboot.o" );
|
||||
? "isobtrt_isobtrt.o"
|
||||
: "isoboot_isoboot.o" );
|
||||
vSourceFiles.push_back ( isoboot );
|
||||
|
||||
// prepare reactos.dff and reactos.inf
|
||||
|
@ -3671,12 +3671,12 @@ MingwLiveIsoModuleHandler::GenerateLiveIsoModuleTarget ()
|
|||
|
||||
if (module.name == "livecdregtest")
|
||||
{
|
||||
bootloader = "isobtrt.o";
|
||||
bootloader = "isobtrt_isobtrt.o";
|
||||
IsoName = "ReactOS-LiveCD-RegTest.iso";
|
||||
}
|
||||
else
|
||||
{
|
||||
bootloader = "isoboot.o";
|
||||
bootloader = "isoboot_isoboot.o";
|
||||
IsoName = "ReactOS-LiveCD.iso";
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue