diff options
author | Reinhard Kotucha <reinhard.kotucha@web.de> | 2008-07-19 19:11:03 +0000 |
---|---|---|
committer | Reinhard Kotucha <reinhard.kotucha@web.de> | 2008-07-19 19:11:03 +0000 |
commit | 04a9f9406f0054f8c024ff166a1b9f23539e4798 (patch) | |
tree | 5d381e8fd4ae2f615829b08577a62abacafd2207 | |
parent | 1ba322380e4a773dd990c9145f1e1b3b9d75d9a9 (diff) |
TLUtils.pm: fixed regexp for freebsd.
git-svn-id: svn://tug.org/texlive/trunk@9681 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 855877d5a73..95c6a71efa1 100644 --- a/Master/tlpkg/TeXLive/TLUtils.pm +++ b/Master/tlpkg/TeXLive/TLUtils.pm @@ -172,7 +172,7 @@ sub platform { # /etc/fstab for ISO9660 file systems. my $guessed_platform=`/bin/sh $config_guess`; chomp $guessed_platform; - $guessed_platform=~s/^x86_64-(.*)-freebsd$/amd64-$1-freebsd/; + $guessed_platform=~s/^x86_64-(.*)-freebsd/amd64-$1-freebsd/; ($CPU=$guessed_platform)=~s/(.*?)-.*/$1/; $CPU =~ s/^alpha(.*)/alpha/; foreach my $os (@OSs) { |