diff options
author | Siep Kroonenberg <siepo@cybercomm.nl> | 2019-12-16 13:40:08 +0000 |
---|---|---|
committer | Siep Kroonenberg <siepo@cybercomm.nl> | 2019-12-16 13:40:08 +0000 |
commit | de7f45879c92c00942b701fb706d874f2f993450 (patch) | |
tree | ac53cdbc245de2570ef03ad1f8c998b012a0665c | |
parent | 6b6d516c61d3d01f4121c8feea08a9e48c8c093e (diff) |
Reverted runscript.tlu from 51942 to 51940 because of real fix for UNC paths in gswin
git-svn-id: svn://tug.org/texlive/trunk@53144 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/bin/win32/runscript.tlu | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/Master/bin/win32/runscript.tlu b/Master/bin/win32/runscript.tlu index a34cc9eb4d0..a872e00330b 100755 --- a/Master/bin/win32/runscript.tlu +++ b/Master/bin/win32/runscript.tlu @@ -281,8 +281,6 @@ local docstr = [[ -- HELPER SUBROUTINES -- local TEXDIR -local TEXDIRBSL -local TEXMFDISTBSL local guimode local function show_error(msg) @@ -708,14 +706,12 @@ if GSEXE then end else -- use built in gs - TEXDIRBSL = string.gsub(TEXDIR,'/', '\\') - TEXMFDISTBSL = string.gsub(TEXMFDIST,'/', '\\') - os.setenv('GS_LIB', TEXDIRBSL..'\\tlpkg\\tlgs\\lib;' - ..TEXDIRBSL..'\\tlpkg\\tlgs\\fonts;' - ..TEXDIRBSL..'\\tlpkg\\tlgs\\Resource\\Init;' - ..TEXDIRBSL..'\\tlpkg\\tlgs\\Resource;' - ..TEXDIRBSL..'\\tlpkg\\tlgs\\kanji;' - ..os.getenv('WINDIR')..'\\Fonts;'..TEXMFDISTBSL..'\\fonts') + os.setenv('GS_LIB', TEXDIR..'/tlpkg/tlgs/lib;' + ..TEXDIR..'/tlpkg/tlgs/fonts;' + ..TEXDIR..'/tlpkg/tlgs/Resource/Init;' + ..TEXDIR..'/tlpkg/tlgs/Resource;' + ..TEXDIR..'/tlpkg/tlgs/kanji;' + ..os.getenv('WINDIR')..'/Fonts;'..TEXMFDIST..'/fonts') os.setenv('GS_DLL', TEXDIR..'/tlpkg/tlgs/bin/gsdll32.dll') GSEXE = TEXDIR..'/tlpkg/tlgs/bin/gswin32c.exe' GSNAME = 'gswin32c.exe' |