diff options
author | Khaled Hosny <khaledhosny@eglug.org> | 2010-06-25 10:58:06 +0300 |
---|---|---|
committer | Khaled Hosny <khaledhosny@eglug.org> | 2010-06-25 10:58:06 +0300 |
commit | eeba4e7b4c68ecef42bd7831d951371f6269f068 (patch) | |
tree | d04c4bf6dc92ef4ba330b58a0790005d1953e876 /Makefile | |
parent | f6aace6e9db3f96cc08dfc932954dbd695c60ee5 (diff) | |
download | luaotfload-eeba4e7b4c68ecef42bd7831d951371f6269f068.tar.gz |
Implement general font blacklisting mechanism
Blacklisted fonts are listed one per line in a file named
"otfl-blacklist.cnf", there can be as much copies of this file as kpse
can find (we look for "tex" format despite of the file extension, so it
can exist any where a .tex file can) and all found files will be loaded
an read.
The parser is rather dump, it assumes a good formated file; one font
per line, no trailing spaces, no inline comments, lines starting with
"%" and empty lines will be ignored, any other lines will end in the
blacklist table without any further processing.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ NAME = luaotfload DOC = $(NAME).pdf DTX = $(NAME).dtx -OTFL = $(wildcard otfl-*.lua) +OTFL = $(wildcard otfl-*.lua) otfl-blacklist.cnf SCRIPT = mkluatexfontdb.lua # Files grouped by generation mode |