summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReinhard Kotucha <reinhard.kotucha@web.de>2008-03-23 21:33:44 +0000
committerReinhard Kotucha <reinhard.kotucha@web.de>2008-03-23 21:33:44 +0000
commit71097ba92cdac0e8687db859f80278ab5559e2d2 (patch)
treea742ac33993606e0d44bd2214b0004d1f0e9088f
parentb097461675cc65c75cef2aeaa50819d1fa369734 (diff)
TLUtils.pm: changed regexp in additional_architectures_available_from_net().
git-svn-id: svn://tug.org/texlive/trunk@7100 c570f23f-e606-0410-a88d-b1316a301751
-rw-r--r--Master/tlpkg/TeXLive/TLUtils.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/Master/tlpkg/TeXLive/TLUtils.pm b/Master/tlpkg/TeXLive/TLUtils.pm
index ed59212b8d0..a96df736414 100644
--- a/Master/tlpkg/TeXLive/TLUtils.pm
+++ b/Master/tlpkg/TeXLive/TLUtils.pm
@@ -877,7 +877,7 @@ sub additional_architectures_available_from_net {
chop;
my $line=$_;
push @::pkgverlines,$line;
- next unless /-1$/;
+ next unless /\s+-1$/;
($platform, undef)=split " ", $line;
unless (defined $vars->{"diskbin_$platform"}) {
push @platforms, $platform;