diff options
author | Siep Kroonenberg <siepo@cybercomm.nl> | 2019-03-31 19:31:37 +0000 |
---|---|---|
committer | Siep Kroonenberg <siepo@cybercomm.nl> | 2019-03-31 19:31:37 +0000 |
commit | fda6defa747b182a30bb41955d5a329f69635e68 (patch) | |
tree | 9736276a89cee3bf03244056be5ac4da3d4ec17e | |
parent | 4efd86182950597e30c5ac323b9851246685f478 (diff) |
Drop non-GUI restriction for external perl
git-svn-id: svn://tug.org/texlive/trunk@50675 c570f23f-e606-0410-a88d-b1316a301751
-rwxr-xr-x | Master/bin/win32/runscript.tlu | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/bin/win32/runscript.tlu b/Master/bin/win32/runscript.tlu index a629a2575f7..9a60015f487 100755 --- a/Master/bin/win32/runscript.tlu +++ b/Master/bin/win32/runscript.tlu @@ -642,7 +642,7 @@ local scripts4tlperl = { ['fmtutil-sys'] = true, } local try_extern_perl = (kpse.var_value('TEXLIVE_WINDOWS_TRY_EXTERNAL_PERL') == '1') and - not (guimode or is_restricted_progname or scripts4tlperl[progname]) + not (is_restricted_progname or scripts4tlperl[progname]) local PERLEXE = try_extern_perl and search_path('perl.exe', PATH) local extperl_warn if not PERLEXE then |