diff options
author | Måns Rullgård <mans@mansr.com> | 2006-06-29 23:19:36 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-06-29 23:19:36 +0000 |
commit | ddab0670b9d828fa30f94938441228c8be083d1c (patch) | |
tree | 0dc6a4ef99ae04b7f9214cd319d6e75434d8780b | |
parent | 8d923001eb51da618d3ed9ef8dfdad74f37cba06 (diff) | |
download | ffmpeg-ddab0670b9d828fa30f94938441228c8be083d1c.tar.gz |
send output of exec checks to log file
Originally committed as revision 5549 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -267,7 +267,7 @@ check_lib(){ } check_exec(){ - check_ld "$@" && { test -n "$cross_prefix" || $TMPE; } + check_ld "$@" && { test -n "$cross_prefix" || $TMPE 2>&1 >>$logfile; } } require(){ |