diff options
author | Måns Rullgård <mans@mansr.com> | 2008-05-15 23:34:43 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2008-05-15 23:34:43 +0000 |
commit | bcea99bb44c71402a88e052ffe726f402d4b2f79 (patch) | |
tree | 1d559ad751bb641238528fa879d2860aa49fe286 /configure | |
parent | 54dddf095c96ee556d1ce8a874170da568ee5189 (diff) | |
download | ffmpeg-bcea99bb44c71402a88e052ffe726f402d4b2f79.tar.gz |
set $logfile before use
Originally committed as revision 13178 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -1060,6 +1060,11 @@ for opt do esac done +disabled logging && logfile=/dev/null + +echo "# $0 $@" > $logfile +set >> $logfile + cc="${cross_prefix}${cc}" ar="${cross_prefix}${ar}" nm="${cross_prefix}${nm}" @@ -1307,11 +1312,6 @@ esac add_extralibs $osextralibs -disabled logging && logfile=/dev/null - -echo "# $0 $@" > $logfile -set >> $logfile - # Combine FFLDFLAGS and the LDFLAGS environment variable. LDFLAGS="$FFLDFLAGS $LDFLAGS" |