summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/scripts
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2021-07-06 17:14:52 +0000
committerKarl Berry <karl@freefriends.org>2021-07-06 17:14:52 +0000
commit2fd6f2eb32e243989f3423333f9c9acef33ff6e8 (patch)
tree1265092104cb32aaad0a8ba19a68ee03c10078b9 /Master/texmf-dist/scripts
parentf53069cbb964142dca04bc3aec95b6ad4b02cfe0 (diff)
xindy on mac now has a universal clisp binary and arch-specific mem files
git-svn-id: svn://tug.org/texlive/trunk@59854 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist/scripts')
-rwxr-xr-xMaster/texmf-dist/scripts/xindy/xindy.pl4
1 files changed, 4 insertions, 0 deletions
diff --git a/Master/texmf-dist/scripts/xindy/xindy.pl b/Master/texmf-dist/scripts/xindy/xindy.pl
index 71d4f2aec4f..2eafd3b1783 100755
--- a/Master/texmf-dist/scripts/xindy/xindy.pl
+++ b/Master/texmf-dist/scripts/xindy/xindy.pl
@@ -511,6 +511,10 @@ if ( $OSNAME eq 'darwin' && ! -e $mem_file ) {
my @uname = POSIX::uname();
if ( $uname[4] eq 'Power Macintosh' ) {
$mem_file = "$lib_dir/xindy-ppc.mem";
+ } else if ( $uname[4] eq 'x86_64' ) {
+ $mem_file = "$lib_dir/xindy-x86_64.mem";
+ } else if ( $uname[4] eq 'arm64' ) {
+ $mem_file = "$lib_dir/xindy-arm64.mem";
} else {
$mem_file = "$lib_dir/xindy-i386.mem";
}