]> git.donarmstrong.com Git - lilypond.git/commitdiff
Remove mf-to-table tex output. Fixes scons font build.
authorJan Nieuwenhuizen <janneke@gnu.org>
Thu, 19 Jul 2007 15:13:42 +0000 (17:13 +0200)
committerJan Nieuwenhuizen <janneke@gnu.org>
Thu, 19 Jul 2007 15:13:42 +0000 (17:13 +0200)
buildscripts/builder.py

index f41b0dd05c48578f2c9e41811cef68c197482436..06f9f413b712dc8896dd7a5cb9bce54eda1dba50 100644 (file)
@@ -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):