File lcov-1.10-except-unreach.patch of Package lcov
Fixes: geninfo: Argument "=====" isn't numeric in numeric gt (>) at /usr/bin/geninfo line 1126. --- lcov.orig/bin/geninfo 2012-03-12 04:26:08.000000000 -0700 +++ lcov/bin/geninfo 2012-06-06 16:54:15.231499893 -0700 @@ -1637,7 +1637,8 @@ push(@result, 0); } else { # Check for zero count - if ($count eq "#####") { + if ($count eq "#####" + or $count eq "=====") { $count = 0; } push(@result, 1);