summaryrefslogtreecommitdiff
path: root/Master/tlpkg/TeXLive/TLUtils.pm
diff options
context:
space:
mode:
authorKarl Berry <karl@freefriends.org>2018-03-29 21:59:47 +0000
committerKarl Berry <karl@freefriends.org>2018-03-29 21:59:47 +0000
commite70df40038af56001965f580c914f7eb2ed6a512 (patch)
tree95c2adbdf9a80a13bb1d996e5a1c13b6cd1fa0cf /Master/tlpkg/TeXLive/TLUtils.pm
parent821b7906ec814c447bf032ade02c467f12de31b5 (diff)
doc,test
git-svn-id: svn://tug.org/texlive/trunk@47181 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive/TLUtils.pm')
-rw-r--r--Master/tlpkg/TeXLive/TLUtils.pm13
1 files changed, 7 insertions, 6 deletions
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm
index c53cf239dfb..c989cd63dee 100644
--- a/Master/tlpkg/TeXLive/TLUtils.pm
+++ b/Master/tlpkg/TeXLive/TLUtils.pm
@@ -309,15 +309,16 @@ sub platform_name {
if ($OS eq "darwin") {
# We have two versions of Mac binary sets.
- # 10.10/Yosemite and newer:
+ # 10.10/Yosemite and newer (Yosemite specially left over):
# -> x86_64-darwin [MacTeX]
- # 10.6/Snow Leopard through 10.9/Mavericks:
+ # 10.6/Snow Leopard through 10.10/Yosemite:
# -> x86_64-darwinlegacy if 64-bit
#
- # (BTW, uname -r numbers are larger by 4 than the minor version.
+ # (BTW, uname -r numbers are larger by 4 than the Mac minor version.
# We don't use uname numbers here.)
#
- my $mactex_darwin = 10; # the minor 10; this will change in the future.
+ # this changes each year, per above:
+ my $mactex_darwin = 10; # lowest minor rev supported by x86_64-darwin.
#
# Most robust approach is apparently to check sw_vers (os version,
# returns "10.x" values), and sysctl (processor hardware).
@@ -393,8 +394,8 @@ sub platform_desc {
'universal-darwin' => 'MacOSX universal binaries',
'win32' => 'Windows',
'x86_64-cygwin' => 'Cygwin on x86_64',
- 'x86_64-darwin' => 'MacOSX current on x86_64',
- 'x86_64-darwinlegacy' => 'MacOSX legacy (10.6-10.9) on x86_64',
+ 'x86_64-darwin' => 'MacOSX current (10.10-) on x86_64',
+ 'x86_64-darwinlegacy' => 'MacOSX legacy (10.6-10.10) on x86_64',
'x86_64-linux' => 'GNU/Linux on x86_64',
'x86_64-linuxmusl' => 'GNU/Linux on x86_64 with musl',
'x86_64-solaris' => 'Solaris on x86_64',