diff options
author | eroux <elie.roux@telecom-bretagne.eu> | 2010-02-26 10:56:38 +0100 |
---|---|---|
committer | eroux <elie.roux@telecom-bretagne.eu> | 2010-02-26 10:56:38 +0100 |
commit | 74f785ebc6f6459db1bae2ce22fd024765b7c40e (patch) | |
tree | 48f410eb60b36b2a7874e6c53648f9ccf4879083 /luaotfload-fonts.lua | |
parent | 20f639783ac4c7591fb39ff95bce690e31583681 (diff) | |
download | luaotfload-74f785ebc6f6459db1bae2ce22fd024765b7c40e.tar.gz |
making the end of the path (after TEXMFVAR) a variable
as it will change soon...
Diffstat (limited to 'luaotfload-fonts.lua')
-rw-r--r-- | luaotfload-fonts.lua | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/luaotfload-fonts.lua b/luaotfload-fonts.lua index d137d97..d198062 100644 --- a/luaotfload-fonts.lua +++ b/luaotfload-fonts.lua @@ -33,8 +33,12 @@ local upper, format, rep = string.upper, string.format, string.rep -- the file name of the font database luaotfload.fonts.basename = "otfl-names.lua" +-- the path to add to TEXMFVAR or TEXMFSYSVAR to get the final directory in +-- normal cases +luaotfload.fonts.subtexmfvardir = "/tex/" + -- the directory in which the database will be saved, can be overwritten -luaotfload.fonts.directory = kpse.expand_var("$TEXMFVAR") .. "/tex/" +luaotfload.fonts.directory = kpse.expand_var("$TEXMFVAR") .. luaotfload.fonts.subtexmfvardir -- the version of the database, to be checked by the lookup function of -- luaotfload |