diff options
author | Philipp Gesang <phg42.2a@gmail.com> | 2015-03-18 08:08:59 +0100 |
---|---|---|
committer | Philipp Gesang <phg42.2a@gmail.com> | 2015-03-18 08:08:59 +0100 |
commit | c4c4901173b0f4284534db1b6a3cfe865b05e15c (patch) | |
tree | f27d1546977bae78b33180192cc80eecc568bf4c /scripts/mkimport | |
parent | b966e35c9df3cca2a25baaf68574d0b8d94eef39 (diff) | |
parent | f5dd1ec3517cda47e5a48221d4ff5cfced12ea06 (diff) | |
download | luaotfload-c4c4901173b0f4284534db1b6a3cfe865b05e15c.tar.gz |
Merge pull request #266 from phi-gamma/master
fontloader fallback
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" |