diff options
-rwxr-xr-x | Master/tlpkg/bin/tl-update-lmtx-bin | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/Master/tlpkg/bin/tl-update-lmtx-bin b/Master/tlpkg/bin/tl-update-lmtx-bin index 66621c67d72..33f06017253 100755 --- a/Master/tlpkg/bin/tl-update-lmtx-bin +++ b/Master/tlpkg/bin/tl-update-lmtx-bin @@ -10,9 +10,6 @@ test -z "$Master" && exit 1 cg=https://dl.contextgarden.net/build/luametatex/main -# leaving out x86_64-linux for now because Mojca doesn't have the -# centos7 vhost set up. - for cgplat in \ aarch64-linux \ amd64-freebsd \ @@ -20,12 +17,13 @@ for cgplat in \ i386-freebsd \ i386-linux \ i386-solaris \ - win64 \ x86_64-darwinlegacy \ + x86_64-linux \ x86_64-linuxmusl \ x86_64-solaris \ + x86_64-w64-mingw32 \ ; do - if test $cgplat = win64; then + if test $cgplat = x86_64-w64-mingw32; then tlplat=windows exeext=.exe else @@ -43,4 +41,3 @@ for cgplat in \ exit 1 fi done - |