checking compiler output was a bad idea, revert to checking exit status
authorMåns Rullgård <mans@mansr.com>
Tue, 1 Aug 2006 19:24:14 +0000 (19:24 +0000)
committerMåns Rullgård <mans@mansr.com>
Tue, 1 Aug 2006 19:24:14 +0000 (19:24 +0000)
Originally committed as revision 5884 to svn://svn.ffmpeg.org/ffmpeg/trunk

configure

index 0815df5..d281267 100755 (executable)
--- a/configure
+++ b/configure
@@ -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(){