diff options
author | Karl Berry <karl@freefriends.org> | 2021-07-07 21:30:11 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2021-07-07 21:30:11 +0000 |
commit | 272b0260c882cb8f044c7b7e95062385f6f88298 (patch) | |
tree | 5d182f8c59f8883d856dcac71f3affb5f1ec9dd3 /Build/source/utils | |
parent | c39527db5c6c7ee347eaef341385264ca1dd483b (diff) |
syntax, darwin mem files
git-svn-id: svn://tug.org/texlive/trunk@59870 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/utils')
-rw-r--r-- | Build/source/utils/xindy/xindy-src/user-commands/xindy.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/utils/xindy/xindy-src/user-commands/xindy.in b/Build/source/utils/xindy/xindy-src/user-commands/xindy.in index 2010eb81067..9e75b8eed5c 100644 --- a/Build/source/utils/xindy/xindy-src/user-commands/xindy.in +++ b/Build/source/utils/xindy/xindy-src/user-commands/xindy.in @@ -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"; |