[latex3-commits] [l3svn] branch master updated: l3build: Secondary tools need neame with no path

noreply at latex-project.org noreply at latex-project.org
Fri May 26 17:04:05 CEST 2017


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  2d225f3   l3build: Secondary tools need neame with no path
2d225f3 is described below

commit 2d225f3984b1be70bbf21d84efd0c5356323435a
Author: Joseph Wright <joseph.wright at morningstar2.co.uk>
Date:   Fri May 26 16:02:29 2017 +0100

    l3build: Secondary tools need neame with no path
    
    The usual security settings in TL/MiKTeX prevent writing the results
    otherwise even if they are 'here' when following the path.
---
 l3build/l3build.lua |    3 +++
 1 file changed, 3 insertions(+)

diff --git a/l3build/l3build.lua b/l3build/l3build.lua
index e2373f9..852f3cf 100644
--- a/l3build/l3build.lua
+++ b/l3build/l3build.lua
@@ -1438,6 +1438,7 @@ function runtool(envvar, command)
 end
 
 function biber(name)
+  local name = basename(name)
   if fileexists(typesetdir .. "/" .. name .. ".bcf") then
     return(
       runtool("BIBINPUTS",  biberexe .. " " .. biberopts .. " " .. name)
@@ -1447,6 +1448,7 @@ function biber(name)
 end
 
 function bibtex(name)
+  local name = basename(name)
   if fileexists(typesetdir .. "/" .. name .. ".aux") then
     -- LaTeX always generates an .aux file, so there is a need to
     -- look inside it for a \citation line
@@ -1482,6 +1484,7 @@ function bibtex(name)
 end
 
 function makeindex(name, inext, outext, logext, style)
+  local name = basename(name)
   if fileexists(typesetdir .. "/" .. name .. inext) then
     return(
       runtool(

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


More information about the latex3-commits mailing list