]> git.deb.at Git - deb/packages.git/blobdiff - bin/parse-contents
Merge commit 'alioth/master' into ubuntu-master
[deb/packages.git] / bin / parse-contents
index a72bb71aefac3e96a904993764e3065062f4b7c1..26f715108530bc1e4ea80e123c018bddc6287a37 100755 (executable)
@@ -85,9 +85,11 @@ for my $suite (@suites) {
 
                open CONT, "zcat $filename|$what"
                    or die $!;
-               while (<CONT>) { last if /^FILE/mo; }
-               if (eof(CONT)) { # no header found
+               my $header_found = 0;
+               while (<CONT>) { /^FILE/mo && do { $header_found = 1; last };}
+               if (eof(CONT)) { # no header found or only header found
                    close CONT; # explicit close to reset $.
+                   next if $header_found;
                    open CONT, "zcat $filename|$what";
                }
                while (<CONT>) {