From: RĂ©mi Duraffort Date: Sun, 16 Mar 2008 20:33:27 +0000 (+0100) Subject: During the compilation, print errors and warnings on stderr. X-Git-Tag: 0.9.0-test0~2053 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=f0c27947efb2fab7144ffd3425e3822d6073d622;p=vlc During the compilation, print errors and warnings on stderr. --- diff --git a/extras/buildsystem/make.pl b/extras/buildsystem/make.pl index 32f3cbd529..052b9525ba 100755 --- a/extras/buildsystem/make.pl +++ b/extras/buildsystem/make.pl @@ -63,13 +63,13 @@ while() $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