summaryrefslogtreecommitdiff
path: root/Master/texmf-dist
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2021-07-07 21:30:11 +0000
committerKarl Berry <karl@freefriends.org>2021-07-07 21:30:11 +0000
commit272b0260c882cb8f044c7b7e95062385f6f88298 (patch)
tree5d182f8c59f8883d856dcac71f3affb5f1ec9dd3 /Master/texmf-dist
parentc39527db5c6c7ee347eaef341385264ca1dd483b (diff)
syntax, darwin mem files
git-svn-id: svn://tug.org/texlive/trunk@59870 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/texmf-dist')
-rwxr-xr-xMaster/texmf-dist/scripts/xindy/xindy.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/Master/texmf-dist/scripts/xindy/xindy.pl b/Master/texmf-dist/scripts/xindy/xindy.pl
index 2eafd3b1783..909b6c5625d 100755
--- a/Master/texmf-dist/scripts/xindy/xindy.pl
+++ b/Master/texmf-dist/scripts/xindy/xindy.pl
@@ -511,9 +511,9 @@ 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' ) {
+ } elsif ( $uname[4] eq 'x86_64' ) {
$mem_file = "$lib_dir/xindy-x86_64.mem";
- } else if ( $uname[4] eq 'arm64' ) {
+ } elsif ( $uname[4] eq 'arm64' ) {
$mem_file = "$lib_dir/xindy-arm64.mem";
} else {
$mem_file = "$lib_dir/xindy-i386.mem";