diff options
author | Norbert Preining <preining@logic.at> | 2011-08-17 00:10:34 +0000 |
---|---|---|
committer | Norbert Preining <preining@logic.at> | 2011-08-17 00:10:34 +0000 |
commit | 90a40ad7387b153f8f3de1558811cc3ca0134d59 (patch) | |
tree | 1013ad12a785871765972669edb819d627c0c361 /Master/tlpkg | |
parent | e57d2ac4b3560205b1c50af9fea498156e247b48 (diff) |
recognize mips64el-*-linux-* as mipsel-linux
support to allow inclusiong in tlcontrib
git-svn-id: svn://tug.org/texlive/trunk@23582 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg')
-rw-r--r-- | Master/tlpkg/TeXLive/TLUtils.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm index 24175964c84..b29368b168a 100644 --- a/Master/tlpkg/TeXLive/TLUtils.pm +++ b/Master/tlpkg/TeXLive/TLUtils.pm @@ -266,6 +266,7 @@ sub platform_name { ($CPU = $guessed_platform) =~ s/(.*?)-.*/$1/; $CPU =~ s/^alpha(.*)/alpha/; # alphaev56 or whatever $CPU =~ s/powerpc64/powerpc/; # we don't distinguish ppc64 + $CPU =~ s/mips64el/mipsel/; # we don't distinguish mips64 and 32 el my @OSs = qw(aix cygwin darwin freebsd hpux irix kfreebsd linux netbsd openbsd solaris); |