summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-08-01 19:24:14 +0000
committerMåns Rullgård <mans@mansr.com>2006-08-01 19:24:14 +0000
commit9b4f605ccf2b04c40645948322bad1691f7ab9f9 (patch)
tree353496afbe4297458c1adb5767dd76172ae6f648 /configure
parent28f1280820b90777c6944a1a3eda42646ca8b970 (diff)
checking compiler output was a bad idea, revert to checking exit status
Originally committed as revision 5884 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
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(){