diff options
author | Norbert Preining <preining@logic.at> | 2023-03-07 23:07:12 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2023-03-07 23:07:12 +0000 |
commit | 0b25f0e7d82fc09185226746b8e8e60f5a76315c (patch) | |
tree | 55010a455113171fa9747b54488dd965378c4dbe /Master | |
parent | 4ec1a0118ea4bb77a55216eefadd4cb84a8a83e0 (diff) |
Revert "luametatex --version fails on Windows when we run it (https://tug.org/pipermail/tex-live/2023-March/048897.html)"
This reverts r66378 after the fix for system_ok
git-svn-id: svn://tug.org/texlive/trunk@66457 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master')
-rwxr-xr-x | Master/install-tl | 2 | ||||
-rwxr-xr-x | Master/texmf-dist/scripts/texlive/tlmgr.pl | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Master/install-tl b/Master/install-tl index 57d80816bf2..59b1eaf770c 100755 --- a/Master/install-tl +++ b/Master/install-tl @@ -1358,7 +1358,7 @@ operations might be disturbed.\n\n"; my $lmtx = "$plat_bindir/luametatex$progext"; if (exists($install{"context"}) && $install{"context"} == 1 && !exists $ENV{"TEXLIVE_INSTALL_NO_CONTEXT_CACHE"} - && (wndws() || TeXLive::TLUtils::system_ok("$lmtx --version")) + && TeXLive::TLUtils::system_ok("$lmtx --version") ) { info("setting up ConTeXt cache: "); $errcount += run_postinst_cmd("mtxrun --generate"); diff --git a/Master/texmf-dist/scripts/texlive/tlmgr.pl b/Master/texmf-dist/scripts/texlive/tlmgr.pl index 2c93efd6a63..bf7f498b6da 100755 --- a/Master/texmf-dist/scripts/texlive/tlmgr.pl +++ b/Master/texmf-dist/scripts/texlive/tlmgr.pl @@ -896,7 +896,7 @@ sub handle_execute_actions { my $lmtx = "$bindir/luametatex"; if (defined($localtlpdb->get_package('context')) && (-x "$lmtx" || -x "$lmtx.exe") - && (wndws() || TeXLive::TLUtils::system_ok("$lmtx --version")) + && TeXLive::TLUtils::system_ok("$lmtx --version") ) { $errors += do_cmd_and_check("mtxrun --generate"); $errors += do_cmd_and_check("context --luatex --generate"); |