diff options
author | Piotr Strzelczyk <piotr@eps.gda.pl> | 2014-04-30 16:03:08 +0000 |
---|---|---|
committer | Piotr Strzelczyk <piotr@eps.gda.pl> | 2014-04-30 16:03:08 +0000 |
commit | 402f016e9c8bdc8d65d50f0153d2c65f55ffd3b9 (patch) | |
tree | 80960200ec2ce67103097fd43e1de39172552509 /Master/bin/win32/runscript.tlu | |
parent | 0009ef1071afe41f1110b2e000b1a3de0564697b (diff) |
fix for argument duplication in fmtutil
git-svn-id: svn://tug.org/texlive/trunk@33766 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/bin/win32/runscript.tlu')
-rwxr-xr-x | Master/bin/win32/runscript.tlu | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Master/bin/win32/runscript.tlu b/Master/bin/win32/runscript.tlu index a722f016070..3ccfb8a50be 100755 --- a/Master/bin/win32/runscript.tlu +++ b/Master/bin/win32/runscript.tlu @@ -244,6 +244,8 @@ local docstr = [[ saving settings. Patch by Yusuke KUROKI
2013/09/22
- add TEXMFDIST/fonts to the GS_LIB path. Patch by Yusuke KUROKI
+ 2014/04/30
+ - fix for argument duplication in fmtutil
]]
-- HELPER SUBROUTINES --
@@ -592,7 +594,7 @@ elseif progname == 'dviout' then table.concat(texrt, ';') .. [['" "-gsx=']] .. GSEXE .. [['"]];
ARGV = {[0]=TEXDIR..'/tlpkg/dviout/dviout.exe', 'dviout', par}
elseif progname == 'fmtutil' and sysprog then
- ARGV = {[0]=BINDIR..'/fmtutil.exe', 'fmtutil', argline}
+ ARGV = {[0]=BINDIR..'/fmtutil.exe', 'fmtutil'}
elseif progname == 'mkluatexfontdb' then
progname = 'luaotfload-tool'
table.insert(arg, '--alias=mkluatexfontdb')
|