summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNorbert Preining <preining@logic.at>2023-03-07 23:07:12 +0000
committerNorbert Preining <preining@logic.at>2023-03-07 23:07:12 +0000
commit0b25f0e7d82fc09185226746b8e8e60f5a76315c (patch)
tree55010a455113171fa9747b54488dd965378c4dbe
parent4ec1a0118ea4bb77a55216eefadd4cb84a8a83e0 (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
-rwxr-xr-xMaster/install-tl2
-rwxr-xr-xMaster/texmf-dist/scripts/texlive/tlmgr.pl2
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");