From 0e0469cbc82a2e91bcfab3a94b6a7010750a5a4d Mon Sep 17 00:00:00 2001 From: Jan Nieuwenhuizen Date: Thu, 19 Jul 2007 17:13:42 +0200 Subject: [PATCH] Remove mf-to-table tex output. Fixes scons font build. --- buildscripts/builder.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/buildscripts/builder.py b/buildscripts/builder.py index f41b0dd05c..06f9f413b7 100644 --- a/buildscripts/builder.py +++ b/buildscripts/builder.py @@ -164,9 +164,9 @@ def add_tfm_target (target, source, env): base = os.path.splitext (str (target[0]))[0] return (target + [base + '.tfm'], source) -def add_lisp_enc_tex_ly_target (target, source, env): +def add_lisp_enc_target (target, source, env): base = os.path.splitext (str (target[0]))[0] - return (target + [base + '.lisp', base + '.enc', base + '.tex'], + return (target + [base + '.lisp', base + '.enc'], source) def add_cff_cffps_svg (target, source, env): @@ -188,10 +188,9 @@ a = '$PYTHON $MF_TO_TABLE_PY \ --global-lisp=${TARGET.base}.otf-gtable \ --lisp=${TARGET.base}.lisp \ --enc=${TARGET.base}.enc \ ---tex=${TARGET.base}.tex \ ${TARGET.base}.log' gtable = Builder (action = a, suffix = '.otf-gtable', src_suffix = '.log', - emitter = add_lisp_enc_tex_ly_target) + emitter = add_lisp_enc_target) env.Append (BUILDERS = {'GTABLE': gtable}) def add_enc_src (target, source, env): -- 2.39.5