From 4cb12c1d59f7779c0c37c6dace005e2bd5cc632b Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Duraffort?= Date: Tue, 23 Dec 2008 14:37:18 +0100 Subject: [PATCH] Don't skip some errors lines and skip some others. --- extras/buildsystem/make.pl | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/extras/buildsystem/make.pl b/extras/buildsystem/make.pl index 47e4200a9f..d2dee333a5 100755 --- a/extras/buildsystem/make.pl +++ b/extras/buildsystem/make.pl @@ -23,8 +23,7 @@ while() $line = $_; chomp $line; # Skip entering/leaving directories and incomplete lines - if( - $line =~ /make\[([0-9]*)\]:.*/ || + if($line =~ /make\[([0-9]*)\]:.*/ || # $line =~ /.*\s\\$/ || $line =~ /^test\s\-z\s/ || $line =~ /^Making\sclean\sin\s\./ || @@ -45,16 +44,16 @@ while() $line =~ /^rm\s-fr\s(.*)/ || $line =~ /^mv\s-f\s(.*)/ || $line =~ /^ln\s-s\s(.*)/ || - $line =~ /^echo\s/ || + $line =~ /^\s*echo\s/ || $line =~ /^mkdir\s/ || - $line =~ /^cat\s/ || + $line =~ /^\s*cat\s/ || $line =~ /^grep\s/ || $line =~ /^cd\s/ || $line =~ /^sed\s/ || $line =~ /^bindir=\s/ || $line =~ /^libtool:\s/ || - $line =~ /^creating lib.*/ || - $line =~ /^\s*\// ) + $line =~ /^\/bin\/sh/ || + $line =~ /^creating lib.*/) {} # Info elsif( -- 2.39.2