summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorMåns Rullgård <mans@mansr.com>2006-07-11 18:09:57 +0000
committerMåns Rullgård <mans@mansr.com>2006-07-11 18:09:57 +0000
commitbd4700b1ca1fdec6fe7026b6680dd4254fe6921b (patch)
tree355427e1726f386450ea3deb780aabfe6612fb66 /configure
parentfc4b254dd88173d8221faf8f047e794f1499d548 (diff)
log stderr of test programs in check_exec()
Originally committed as revision 5714 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 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(){