checking compiler output was a bad idea, revert to checking exit status

Originally committed as revision 5884 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
Måns Rullgård 2006-08-01 19:24:14 +00:00
parent 28f1280820
commit 9b4f605ccf
1 changed files with 1 additions and 1 deletions

2
configure vendored
View File

@ -214,7 +214,7 @@ add_extralibs(){
}
check_cmd(){
"$@" 2>&1 | tee -a $logfile | { ! grep -E -q -v '#warning|^In file'; }
"$@" >>$logfile 2>&1
}
check_cc(){