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

This commit is contained in:
Wolfgang Thaller 2024-05-11 02:13:46 +02:00
parent 9f4252d7f8
commit 5a740db226

View File

@ -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);
}