1
0
mirror of https://github.com/autc04/Retro68.git synced 2025-02-19 09:31:37 +00:00

make Elf2Mac write non-empty data forks, to unbreak some configure scripts (fixes )

This commit is contained in:
Wolfgang Thaller 2024-05-11 02:13:46 +02:00
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);
}