]> git.sesse.net Git - vlc/blobdiff - extras/buildsystem/make.pl
Move last.fm password from PasswordShowOnEdit to Password.
[vlc] / extras / buildsystem / make.pl
index 32f3cbd529fff5c1557992ef8aab6e72eef6dfa7..47e4200a9fdce650a183a30d60a0cd6cd2736b97 100755 (executable)
@@ -36,14 +36,25 @@ while(<STDIN>)
         $line =~ /^touch.*/ ||
         $line =~ /^srcdir=.*/ ||
         $line =~ /^.* (lib[A-z0-9-_]*plugin.so).*/ ||
-       $line =~ /^\sgcc\s-std=.*/ ||
-    $line =~ /^\sgcc\s-mmacosx.*/ ||
-    $line =~ /^\sg\+\+\s.*/ ||
+       $line =~ /^\s*gcc(-.*)?\s-std=.*/ ||
+        $line =~ /^\sgcc(-.*)?\s-mmacosx.*/ ||
+        $line =~ /^\sg\+\+(-.*)?\s.*/ ||
 #    $line =~ /^.*moc.*/ ||
        $line =~ /^.*libtool.*\-o\s(lib.*\.la).*/ ||
         $line =~ /^.*rm\s\-f\s(.*)/ ||
        $line =~ /^rm\s-fr\s(.*)/ ||
-       $line =~ /^creating lib.*/ )
+       $line =~ /^mv\s-f\s(.*)/ ||
+       $line =~ /^ln\s-s\s(.*)/ ||
+       $line =~ /^echo\s/ ||
+       $line =~ /^mkdir\s/ ||
+       $line =~ /^cat\s/ ||
+       $line =~ /^grep\s/ ||
+       $line =~ /^cd\s/ ||
+       $line =~ /^sed\s/ ||
+       $line =~ /^bindir=\s/ ||
+       $line =~ /^libtool:\s/ ||
+       $line =~ /^creating lib.*/ ||
+        $line =~ /^\s*\// )
      {}
      # Info
      elsif(
@@ -63,13 +74,13 @@ while(<STDIN>)
          $line =~ s/(.*):([0-9]*):\swarning\:(.*)/WARNING : $file$1: $lineno$2: $warn$3/g  ||
           $line =~ s/.*is\sdeprecated.*/WARNING : $line/g )
      {
-       print $warn.$line.$reset."\n";
+       print STDERR $warn.$line.$reset."\n";
      }
      # Error
      elsif (
          $line =~ s/(.*):([0-9]*):\serror\:(.*)/ERROR   : $file$1: $lineno$2: $error$3/g  )
      {
-       print $error.$line.$reset."\n";
+       print STDERR $error.$line.$reset."\n";
      }
      # Print unmatched lines
      else