Commit c158bb22 authored by Jack Jansen's avatar Jack Jansen

Minor clarficiations in the dialogs about which errno file is wanted when (I had also forgotten:-).

parent 07d69f60
...@@ -102,13 +102,13 @@ def parse_errors_h(fp, dict): ...@@ -102,13 +102,13 @@ def parse_errors_h(fp, dict):
def main(): def main():
dict = {} dict = {}
fss, ok = macfs.PromptGetFile("Where is errno.h?") fss, ok = macfs.PromptGetFile("Where is GUSI sys/errno.h?")
if not ok: return if not ok: return
fp = open(fss.as_pathname()) fp = open(fss.as_pathname())
parse_errno_h(fp, dict) parse_errno_h(fp, dict)
fp.close() fp.close()
fss, ok = macfs.PromptGetFile("Select 2nd errno.h or cancel") fss, ok = macfs.PromptGetFile("Select 2nd errno.h (MSL) or cancel")
if not ok: return if not ok: return
fp = open(fss.as_pathname()) fp = open(fss.as_pathname())
parse_errno_h(fp, dict) parse_errno_h(fp, dict)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment