[latex3-commits] [l3svn] branch master updated: Propogate -H/-e options from top-level script

noreply at latex-project.org noreply at latex-project.org
Wed Sep 2 15:35:34 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  b69acf7   Propogate -H/-e options from top-level script
b69acf7 is described below

commit b69acf7429bca9fb69366a3a6e56ba4d68f0736f
Author: Joseph Wright <joseph.wright at morningstar2.co.uk>
Date:   Wed Sep 2 14:34:57 2015 +0100

    Propogate -H/-e options from top-level script
    
    This has to be done by hand.
---
 build.lua |   11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/build.lua b/build.lua
index 73437bb..ab63f78 100644
--- a/build.lua
+++ b/build.lua
@@ -32,7 +32,16 @@ function main (target)
   local function dobundles (bundles, target)
     local errorlevel = 0
     for _,i in ipairs (bundles) do
-      errorlevel = run (i, "texlua " .. scriptname .. " " .. target)
+      local engines = ""
+      if optengines then
+        engines = " --engine=" .. table.concat(optengines, ",")
+      end
+      errorlevel = run(
+        i,
+        "texlua " .. scriptname .. " "
+          .. target .. (opthalt and " -H" or "")
+
+      )
       if errorlevel ~= 0 then
         break
       end

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


More information about the latex3-commits mailing list