mirror of
https://github.com/autc04/Retro68.git
synced 2025-01-27 04:31:44 +00:00
make Elf2Mac write non-empty data forks, to unbreak some configure scripts (fixes #233)
This commit is contained in:
parent
9f4252d7f8
commit
5a740db226
@ -219,6 +219,8 @@ void Object::SingleSegmentApp(string output)
|
|||||||
file.creator = ResType("????");
|
file.creator = ResType("????");
|
||||||
file.type = ResType("APPL");
|
file.type = ResType("APPL");
|
||||||
|
|
||||||
|
file.data = "Built using Retro68.";
|
||||||
|
|
||||||
file.write(output);
|
file.write(output);
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -402,5 +404,7 @@ void Object::MultiSegmentApp(string output, SegmentMap& segmentMap)
|
|||||||
file.creator = ResType("????");
|
file.creator = ResType("????");
|
||||||
file.type = ResType("APPL");
|
file.type = ResType("APPL");
|
||||||
|
|
||||||
|
file.data = "Built using Retro68,";
|
||||||
|
|
||||||
file.write(output);
|
file.write(output);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user