diff options
author | Karl Berry <karl@freefriends.org> | 2010-05-25 00:36:03 +0000 |
---|---|---|
committer | Karl Berry <karl@freefriends.org> | 2010-05-25 00:36:03 +0000 |
commit | d5d8be071d52baec91f2c830f11d1efd1f8f3b14 (patch) | |
tree | 516afe856f63fbffde6dcda9b81771fb5a730432 /Master/tlpkg/TeXLive | |
parent | 42af04bbcfa80a8c984c8704e1326de3d91fce4b (diff) |
amd64-kfreebsd 2010 pretest 1 binaries (braslau)
git-svn-id: svn://tug.org/texlive/trunk@18459 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Master/tlpkg/TeXLive')
-rw-r--r-- | Master/tlpkg/TeXLive/TLUtils.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm index c493b149399..7f0cc0f1c96 100644 --- a/Master/tlpkg/TeXLive/TLUtils.pm +++ b/Master/tlpkg/TeXLive/TLUtils.pm @@ -219,12 +219,12 @@ sub platform die "$0: could not run $config_guess, cannot proceed, sorry" if ! $guessed_platform; - $guessed_platform =~ s/^x86_64-(.*)-freebsd/amd64-$1-freebsd/; + $guessed_platform =~ s/^x86_64-(.*)-k?freebsd/amd64-$1-k?freebsd/; 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/; # alphaev56 or whatever - $CPU =~ s/powerpc64/powerpc/; # we don't distinguish on ppc64 + $CPU =~ s/powerpc64/powerpc/; # we don't distinguish ppc64 for my $os (@OSs) { # Match word boundary at the beginning of the os name so that # freebsd and kfreebsd are distinguished. @@ -264,6 +264,7 @@ sub platform_desc { 'alpha-linux' => 'DEC Alpha with GNU/Linux', 'alphaev5-osf' => 'DEC Alphaev5 OSF', 'amd64-freebsd' => 'x86_64 with FreeBSD', + 'amd64-kfreebsd' => 'x86_64 with GNU/FreeBSD', 'hppa-hpux' => 'HP-UX', 'i386-cygwin' => 'Intel x86 with Cygwin', 'i386-darwin' => 'Intel x86 with MacOSX/Darwin', |