diff options
author | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2024-03-03 00:45:04 +0000 |
---|---|---|
committer | Akira Kakuto <kakuto@fuk.kindai.ac.jp> | 2024-03-03 00:45:04 +0000 |
commit | 2b12a097244043ca7b8f0405974830ce794820e0 (patch) | |
tree | c05eac7bd10f93dae230c1d9b2b692a78a7f867a /Master | |
parent | 4e55dcd945301f4f711c2daf375c32a2a835e26b (diff) |
runscript.dll: fix a bug
runscript.tlu: allow external perl for restricted scripts
git-svn-id: svn://tug.org/texlive/trunk@70363 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/bin/windows/runscript.dll | bin | 9728 -> 9728 bytes | |||
-rwxr-xr-x | Master/bin/windows/runscript.tlu | 2 |
2 files changed, 1 insertions, 1 deletions
diff --git a/Master/bin/windows/runscript.dll b/Master/bin/windows/runscript.dll Binary files differindex d9ae8d7ee36..c8536f6b47d 100755 --- a/Master/bin/windows/runscript.dll +++ b/Master/bin/windows/runscript.dll diff --git a/Master/bin/windows/runscript.tlu b/Master/bin/windows/runscript.tlu index d59e5d83df2..318dbabdcfb 100755 --- a/Master/bin/windows/runscript.tlu +++ b/Master/bin/windows/runscript.tlu @@ -647,7 +647,7 @@ local scripts4tlperl = { ['fmtutil-sys'] = true, } local try_extern_perl = (kpse.var_value('TEXLIVE_WINDOWS_TRY_EXTERNAL_PERL') == '1') and - not (is_restricted_progname or scripts4tlperl[progname]) + not (scripts4tlperl[progname]) local PERLEXE = try_extern_perl and search_path('perl.exe', PATH) local extperl_warn if not PERLEXE then |