From 9d463c289353df50118033b581bc60bd291c9d01 Mon Sep 17 00:00:00 2001 From: Jeroen van Wolffelaar Date: Wed, 8 Feb 2006 20:26:18 +0000 Subject: [PATCH] Fix regex for contents lines: stray tabs got included --- bin/parse-contents | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/parse-contents b/bin/parse-contents index b3caaef..50f5ee2 100755 --- a/bin/parse-contents +++ b/bin/parse-contents @@ -56,7 +56,7 @@ for my $archive (@archives) { for my $suite (@suites) { for my $arch (@archs) { my %data = (); chomp; print "Doing line $.\n" if $. % 10000 == 0; - /^(.+)\s+(\S+)$/; + /^(.+?)\s+(\S+)$/o; my ($file, $value) = ($1, $2); $value =~ s#[^,/]+/##og; my @packages = split /,/, $value; -- 2.39.2