diff options
author | Khaled Hosny <khaledhosny@eglug.org> | 2010-03-10 15:09:09 +0200 |
---|---|---|
committer | Khaled Hosny <khaledhosny@eglug.org> | 2010-03-10 15:09:09 +0200 |
commit | 4c17884ca7a8c4fddee17c0b16c76d577f1f3d3f (patch) | |
tree | ad1d839e3a505801a97c8b9294632c0d092620f4 | |
parent | 631054664ae5d661465abc61f00d60e63388115d (diff) | |
download | luaotfload-4c17884ca7a8c4fddee17c0b16c76d577f1f3d3f.tar.gz |
--no-fc-cache doesn't make sense now
-rw-r--r-- | mkluatexfontdb.lua | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/mkluatexfontdb.lua b/mkluatexfontdb.lua index 15fcb1d..852bdd4 100644 --- a/mkluatexfontdb.lua +++ b/mkluatexfontdb.lua @@ -53,7 +53,6 @@ Valid options: -V --version prints the version and exits -h --help prints this message --fc-cache run fc-cache before updating database - --no-fc-cache do not run fc-cache (default) -p --purge purge removed fonts --sys writes the database for the whole system (default is only for the user) @@ -84,7 +83,6 @@ local long_opts = { help = "h", sys = 0, ['fc-cache'] = 0, - ['no-fc-cache'] = 0, } local short_opts = "d:fqpvVh" @@ -136,8 +134,6 @@ local function process_cmdline() purge = 1 elseif v == "fc-cache" then run_fc_cache = 1 - elseif v == "no-fc-cache" then - run_fc_cache = 0 elseif v == "sys" then mkluatexfontdb.directory = kpse.expand_var("$TEXMFSYSVAR") .. mkluatexfontdb.subtexmfvardir end |