[latex3-commits] [l3svn] branch master updated: l3buid: Special case for e-LaTeX

noreply at latex-project.org noreply at latex-project.org
Sat Sep 5 10:35:07 CEST 2015


This is an automated email from the git hooks/post-receive script.

joseph pushed a commit to branch master
in repository l3svn.

The following commit(s) were added to refs/heads/master by this push:
       new  d10576e   l3buid: Special case for e-LaTeX
d10576e is described below

commit d10576e8a9b3d58e748ae1f7293be66ed778452f
Author: Joseph Wright <joseph.wright at morningstar2.co.uk>
Date:   Sat Sep 5 09:34:01 2015 +0100

    l3buid: Special case for e-LaTeX
    
    There's not been an "elatex" for some time, so
    
        engine = etex
        format = latex
    
    needs to avoid looking for it.
---
 l3build/l3build.lua |    6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/l3build/l3build.lua b/l3build/l3build.lua
index 912dccf..9d5d135 100644
--- a/l3build/l3build.lua
+++ b/l3build/l3build.lua
@@ -979,6 +979,12 @@ function runtest(name, engine, hide, ext)
   else
     format = ""
   end
+  -- Special casing for e-LaTeX format
+  if
+    string.match(checkformat, "^latex$") and
+    string.match(engine, "^etex$") then
+    format = " -fmt=latex"
+  end
   -- Special casing for (u)pTeX LaTeX formats
   if
     string.match(checkformat, "^latex$") and

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the latex3-commits mailing list