[latex3-commits] [l3svn] 04/07: l3build: Allow for passing through "-p" option

noreply at latex-project.org noreply at latex-project.org
Sun May 22 22:52:54 CEST 2016


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

joseph pushed a commit to branch master
in repository l3svn.

commit b000d900ec9908a085281756fd02bf11381b7111
Author: Joseph Wright <joseph.wright at morningstar2.co.uk>
Date:   Sun May 22 20:20:51 2016 +0100

    l3build: Allow for passing through "-p" option
    
    Also an improvement for passing "-q".
---
 l3build/l3build.lua |    7 ++-----
 1 file changed, 2 insertions(+), 5 deletions(-)

diff --git a/l3build/l3build.lua b/l3build/l3build.lua
index bac7fc6..e0163fc 100644
--- a/l3build/l3build.lua
+++ b/l3build/l3build.lua
@@ -609,10 +609,6 @@ function allmodules(target)
     if optengines then
       engines = " --engine=" .. table.concat(optengines, ",")
     end
-    local quiet = ""
-    if optquiet then
-      quiet = " --quiet"
-    end
     local version = ""
     if optversion then
       version = " --version=" .. optversion[1]
@@ -623,7 +619,8 @@ function allmodules(target)
         .. (opthalt and " -H" or "")
         .. date
         .. engines
-        .. quiet
+        .. (optpdf and " -p" or "")
+        .. (optquiet and " -q" or "")
         .. version
     )
     if errorlevel ~= 0 then

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


More information about the latex3-commits mailing list