Commit 4cb12c1d authored by Rémi Duraffort's avatar Rémi Duraffort

Don't skip some errors lines and skip some others.

parent 5a189bf3
...@@ -23,8 +23,7 @@ while(<STDIN>) ...@@ -23,8 +23,7 @@ while(<STDIN>)
$line = $_; $line = $_;
chomp $line; chomp $line;
# Skip entering/leaving directories and incomplete lines # Skip entering/leaving directories and incomplete lines
if( if($line =~ /make\[([0-9]*)\]:.*/ ||
$line =~ /make\[([0-9]*)\]:.*/ ||
# $line =~ /.*\s\\$/ || # $line =~ /.*\s\\$/ ||
$line =~ /^test\s\-z\s/ || $line =~ /^test\s\-z\s/ ||
$line =~ /^Making\sclean\sin\s\./ || $line =~ /^Making\sclean\sin\s\./ ||
...@@ -45,16 +44,16 @@ while(<STDIN>) ...@@ -45,16 +44,16 @@ while(<STDIN>)
$line =~ /^rm\s-fr\s(.*)/ || $line =~ /^rm\s-fr\s(.*)/ ||
$line =~ /^mv\s-f\s(.*)/ || $line =~ /^mv\s-f\s(.*)/ ||
$line =~ /^ln\s-s\s(.*)/ || $line =~ /^ln\s-s\s(.*)/ ||
$line =~ /^echo\s/ || $line =~ /^\s*echo\s/ ||
$line =~ /^mkdir\s/ || $line =~ /^mkdir\s/ ||
$line =~ /^cat\s/ || $line =~ /^\s*cat\s/ ||
$line =~ /^grep\s/ || $line =~ /^grep\s/ ||
$line =~ /^cd\s/ || $line =~ /^cd\s/ ||
$line =~ /^sed\s/ || $line =~ /^sed\s/ ||
$line =~ /^bindir=\s/ || $line =~ /^bindir=\s/ ||
$line =~ /^libtool:\s/ || $line =~ /^libtool:\s/ ||
$line =~ /^creating lib.*/ || $line =~ /^\/bin\/sh/ ||
$line =~ /^\s*\// ) $line =~ /^creating lib.*/)
{} {}
# Info # Info
elsif( elsif(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment