diff options
author | Karl Berry <karl@freefriends.org> | 2009-01-28 17:18:10 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2009-01-28 17:18:10 +0000 |
commit | 83c7b4227ddbcd37a968aaec78b58802ef180cbb (patch) | |
tree | 7e0486fd1c9a2e28c6aaad3934c9a34dc5b3cfda /Master/tlpkg/TeXLive | |
parent | f40e3fc0f3a9464622214ebf9745c053b2a5be23 (diff) |
(platform): try to recognize
powerpc64-unknown-linux-gnu from config.guess as
our powerpc-linux.
git-svn-id: svn://tug.org/texlive/trunk@12001 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive')
-rw-r--r-- | Master/tlpkg/TeXLive/TLUtils.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm index eeb78966858..059be328ee8 100644 --- a/Master/tlpkg/TeXLive/TLUtils.pm +++ b/Master/tlpkg/TeXLive/TLUtils.pm @@ -250,7 +250,8 @@ sub platform { my $CPU; # CPU type as reported by config.guess. my $OS; # O/S type as reported by config.guess. ($CPU = $guessed_platform) =~ s/(.*?)-.*/$1/; - $CPU =~ s/^alpha(.*)/alpha/; + $CPU =~ s/^alpha(.*)/alpha/; # alphaev56 or whatever + $CPU =~ s/powerpc64/powerpc/; # we don't distinguish on ppc64 for my $os (@OSs) { $OS = $os if $guessed_platform =~ /$os/; } |