diff options
author | Måns Rullgård <mans@mansr.com> | 2006-07-11 18:09:57 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2006-07-11 18:09:57 +0000 |
commit | bd4700b1ca1fdec6fe7026b6680dd4254fe6921b (patch) | |
tree | 355427e1726f386450ea3deb780aabfe6612fb66 | |
parent | fc4b254dd88173d8221faf8f047e794f1499d548 (diff) | |
download | ffmpeg-bd4700b1ca1fdec6fe7026b6680dd4254fe6921b.tar.gz |
log stderr of test programs in check_exec()
Originally committed as revision 5714 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -288,7 +288,7 @@ check_lib(){ } check_exec(){ - check_ld "$@" && { test "$cross_compile" = yes || $TMPE 2>&1 >>$logfile; } + check_ld "$@" && { test "$cross_compile" = yes || $TMPE >>$logfile 2>&1; } } require(){ |