diff options
Diffstat (limited to 'Master/texmf-dist')
-rw-r--r-- | Master/texmf-dist/scripts/texlive/NEWS | 9 | ||||
-rwxr-xr-x | Master/texmf-dist/scripts/texlive/tlmgr.pl | 2 |
2 files changed, 6 insertions, 5 deletions
diff --git a/Master/texmf-dist/scripts/texlive/NEWS b/Master/texmf-dist/scripts/texlive/NEWS index 522fcec34af..1e7c14ae772 100644 --- a/Master/texmf-dist/scripts/texlive/NEWS +++ b/Master/texmf-dist/scripts/texlive/NEWS @@ -1,15 +1,16 @@ (This file public domain. Originally written by Norbert Preining and Karl Berry, 2010.) -<p><b>tlmgr NNNNN (released DDmmmYY):</b> +<li>only run mtxrun if luatex is available. + +<p><b>tlmgr 48271 (released 25jul18):</b> +<li>prefer system provided binaries over TL provided binaries for + compressor and download programs. <li>tlmgr info now allows listing only packages from the remote repository using <tt>--only-remote</tt>. <li>further checks on downloaded signature files to reduce spurious warnings. -<li>prefer system provided binaries over TL provided binaries for - compressor and download programs. <li>save alias information from TeX Catalogue. -<li>only run mtxrun if luatex is available. <p><b>tlmgr 47951 (released 07jun18):</b> <li>Backup removal for non-xz. diff --git a/Master/texmf-dist/scripts/texlive/tlmgr.pl b/Master/texmf-dist/scripts/texlive/tlmgr.pl index 6186f921a8c..b88b057111e 100755 --- a/Master/texmf-dist/scripts/texlive/tlmgr.pl +++ b/Master/texmf-dist/scripts/texlive/tlmgr.pl @@ -850,7 +850,7 @@ sub handle_execute_actions { if ($::files_changed) { $errors += do_cmd_and_check("mktexlsr"); if (defined($localtlpdb->get_package('context')) - && (-x "$bindir/luatex" || -x "$bindir/luatex.exe")) { + && (-x "$bindir/texlua" || -x "$bindir/texlua.exe")) { $errors += do_cmd_and_check("mtxrun --generate"); } $::files_changed = 0; |