diff options
Diffstat (limited to 'scripts/mkimport')
-rw-r--r-- | scripts/mkimport | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/mkimport b/scripts/mkimport index 132d026..2f64d62 100644 --- a/scripts/mkimport +++ b/scripts/mkimport @@ -610,11 +610,11 @@ local describe = function (target, location) local dname = def.name local dkind = def.kind - local subdir, ourname = derive_ourname (dname, dkind) + local subdir, ourname = derive_ourname (def.ours or dname, dkind) separator () status ("category %s", cat) status ("kind %s", kind_name[dkind]) - status ("in Context %s", derive_fullname (cat, def.name, def.kind)) + status ("in Context %s", derive_fullname (cat, dname, dkind)) status ("in Luaotfload %s", ourname) separator () return 0 @@ -633,7 +633,7 @@ local tell = function (arg) end local help = function () - iowrite "usage: mkinfo <command> [<args>]\n" + iowrite "usage: mkimport <command> [<args>]\n" iowrite "\n" iowrite "Where <command> is one of\n" iowrite " help Print this help message\n" |