[vlc-devel] commit: Don't skip some errors lines and skip some others. ( Rémi Duraffort )

git version control git at videolan.org
Sat Dec 27 12:40:33 CET 2008


vlc | branch: master | Rémi Duraffort <ivoire at videolan.org> | Tue Dec 23 14:37:18 2008 +0100| [4cb12c1d59f7779c0c37c6dace005e2bd5cc632b] | committer: Rémi Duraffort 

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

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=4cb12c1d59f7779c0c37c6dace005e2bd5cc632b
---

 extras/buildsystem/make.pl |   11 +++++------
 1 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/extras/buildsystem/make.pl b/extras/buildsystem/make.pl
index 47e4200..d2dee33 100755
--- a/extras/buildsystem/make.pl
+++ b/extras/buildsystem/make.pl
@@ -23,8 +23,7 @@ while(<STDIN>)
      $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(<STDIN>)
 	$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(




More information about the vlc-devel mailing list