mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 16:25:43 +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,
|
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";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue