diff options
author | eroux <elie.roux@telecom-bretagne.eu> | 2010-03-01 10:06:06 +0100 |
---|---|---|
committer | eroux <elie.roux@telecom-bretagne.eu> | 2010-03-01 10:06:06 +0100 |
commit | f6ecd9d474e74733d55c2c1e5b1b65777f4e05f3 (patch) | |
tree | 6fae2978970b9386ffb8ae3b2db9a05d731e0bc9 /mkluatexfontdb.lua | |
parent | b25d2dcd703e6674da868fa1c630952599c115df (diff) | |
download | luaotfload-f6ecd9d474e74733d55c2c1e5b1b65777f4e05f3.tar.gz |
Fixing small bugs
Diffstat (limited to 'mkluatexfontdb.lua')
-rw-r--r-- | mkluatexfontdb.lua | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/mkluatexfontdb.lua b/mkluatexfontdb.lua index 6342d2b..a7424b4 100644 --- a/mkluatexfontdb.lua +++ b/mkluatexfontdb.lua @@ -29,6 +29,13 @@ local names = fonts.names names.basename = names.basename or "otfl-names.lua" names.version = names.version or 2.004 +-- the path to add to TEXMFVAR or TEXMFSYSVAR to get the final directory in +-- normal cases +mkluatexfontdb.subtexmfvardir = "/tex/" + +-- the directory in which the database will be saved, can be overwritten +mkluatexfontdb.directory = kpse.expand_var("$TEXMFVAR") .. mkluatexfontdb.subtexmfvardir + local log = logs.report local function help_msg() @@ -89,7 +96,7 @@ local function do_run_fc_cache(c) -- TODO: detect if fc-cache is available end local toexec = 'fc-cache' - if system == 'windows' then + if fonts.system == 'windows' then toexec = 'fc-cache.exe' -- TODO: to test on a non-cygwin Windows end log('executing %s...\n', toexec) @@ -133,19 +140,13 @@ local function process_cmdline() if string.match(arg[0], '-sys') then mkluatexfontdb.directory = kpse.expand_var("$TEXMFSYSVAR") .. mkluatexfontdb.subtexmfvardir end + mkluatexfontdb.directory = fonts.path_normalize(mkluatexfontdb.directory) names.log_level = log_level end process_cmdline() do_run_fc_cache(run_fc_cache) --- the path to add to TEXMFVAR or TEXMFSYSVAR to get the final directory in --- normal cases -mkluatexfontdb.subtexmfvardir = "/tex/" - --- the directory in which the database will be saved, can be overwritten -mkluatexfontdb.directory = kpse.expand_var("$TEXMFVAR") .. mkluatexfontdb.subtexmfvardir - local function generate(force) log("generating font names database.") |