From bd4700b1ca1fdec6fe7026b6680dd4254fe6921b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A5ns=20Rullg=C3=A5rd?= <mans@mansr.com> Date: Tue, 11 Jul 2006 18:09:57 +0000 Subject: [PATCH] log stderr of test programs in check_exec() Originally committed as revision 5714 to svn://svn.ffmpeg.org/ffmpeg/trunk --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index 0d1bf4757e..88087ad3b2 100755 --- a/configure +++ b/configure @@ -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(){