summaryrefslogtreecommitdiff
path: root/Master
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2015-12-10 20:51:32 +0000
committerNorbert Preining <preining@logic.at>2015-12-10 20:51:32 +0000
commitcca12fbbaa7a4794086f4bc4cc21450552d0f2ef (patch)
tree3917698e518f2491ba3894b251fa2e15a859a939 /Master
parent42dc03293e33493551bd5f543377926742a68f97 (diff)
fix runscript.tlu adding fmtutil/updmap to the arguments
git-svn-id: svn://tug.org/texlive/trunk@39066 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-xMaster/bin/win32/runscript.tlu6
1 files changed, 4 insertions, 2 deletions
diff --git a/Master/bin/win32/runscript.tlu b/Master/bin/win32/runscript.tlu
index 198884fab6f..6905c675f92 100755
--- a/Master/bin/win32/runscript.tlu
+++ b/Master/bin/win32/runscript.tlu
@@ -251,6 +251,8 @@ local docstr = [[
- handle fmtutil-sys via fmtutil --sys
2015/09/10
- more slash flipping for the sake of vbscript and unc paths
+ 2015/12/11
+ - fix spurious arguments for updmap and fmtutil
]]
-- HELPER SUBROUTINES --
@@ -576,11 +578,11 @@ elseif progname == 'a2ping' then
table.insert(extension_map['.pl'], '-x')
elseif progname == 'updmap' then
if sysprog then
- argline = progname .. ' --sys ' .. argline
+ argline = ' --sys ' .. argline
end
elseif progname == 'fmtutil' then
if sysprog then
- argline = progname .. ' --sys ' .. argline
+ argline = ' --sys ' .. argline
end
elseif progname == 'asy' then
os.setenv('ASYMPTOTE_GS', GSEXE)