diff options
author | Norbert Preining <preining@logic.at> | 2021-03-05 00:26:37 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2021-03-05 00:26:37 +0000 |
commit | 3a092ae131cc04de960e102aaf082fa64e17da39 (patch) | |
tree | 5a74b543338a01efa7e47b0a991eea97d38589d1 | |
parent | 04e1100fa699639fd5b497133aa4b013b21ff86e (diff) |
TLUtils: fix
git-svn-id: svn://tug.org/texlive/trunk@58139 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r-- | Master/tlpkg/TeXLive/TLUtils.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm index e8c75391db4..786c35813cc 100644 --- a/Master/tlpkg/TeXLive/TLUtils.pm +++ b/Master/tlpkg/TeXLive/TLUtils.pm @@ -363,7 +363,7 @@ sub platform_name { if ($os_major >= 11 || $os_minor >= $mactex_darwin) { $CPU = "universal"; $OS = "darwin"; - } elsif ($os_major == 10 && $6 <= $os_minor && $os_minor < $mactex_darwin){ + } elsif ($os_major == 10 && 6 <= $os_minor && $os_minor < $mactex_darwin){ # in between, x86 hardware only. On 10.6 only, must check if 64-bit, # since if later than that, always 64-bit. my $is64 = $os_minor == 6 |