From: Måns Rullgård Date: Tue, 1 Aug 2006 19:24:14 +0000 (+0000) Subject: checking compiler output was a bad idea, revert to checking exit status X-Git-Tag: v0.5~12237 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9b4f605ccf2b04c40645948322bad1691f7ab9f9;p=platform%2Fupstream%2Flibav.git checking compiler output was a bad idea, revert to checking exit status Originally committed as revision 5884 to svn://svn.ffmpeg.org/ffmpeg/trunk --- diff --git a/configure b/configure index 0815df5..d281267 100755 --- 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(){