From 9b4f605ccf2b04c40645948322bad1691f7ab9f9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= Date: Tue, 1 Aug 2006 19:24:14 +0000 Subject: [PATCH] checking compiler output was a bad idea, revert to checking exit status Originally committed as revision 5884 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 0815df5a4e..d281267a70 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(){