mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-24 17:29:38 +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.type = ResType("APPL");
|
||||
|
||||
file.data = "Built using Retro68.";
|
||||
|
||||
file.write(output);
|
||||
}
|
||||
|
||||
@ -402,5 +404,7 @@ void Object::MultiSegmentApp(string output, SegmentMap& segmentMap)
|
||||
file.creator = ResType("????");
|
||||
file.type = ResType("APPL");
|
||||
|
||||
file.data = "Built using Retro68,";
|
||||
|
||||
file.write(output);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user