diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-03-25 09:33:26 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-03-25 09:33:26 +0000 |
commit | d314ea4e40acb1920fdc6f3596b9e8c89d3586d4 (patch) | |
tree | 0690b4beb871c35b7c4f33bffa5f9795a24b07c1 | |
parent | 399d31cce86717ffdf9cfb192058abec23252afa (diff) | |
download | ffmpeg-d314ea4e40acb1920fdc6f3596b9e8c89d3586d4.tar.gz |
Remove ineffectual --log option.
Originally committed as revision 12575 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rwxr-xr-x | configure | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -56,7 +56,7 @@ show_help(){ echo echo "Standard options:" echo " --help print this message" - echo " --log[=FILE|yes|no] log tests and output to FILE [config.err]" + echo " --log=<FILE|yes|no> log tests and output to FILE [config.err]" echo " --prefix=PREFIX install in PREFIX [$PREFIX]" echo " --libdir=DIR install libs in DIR [PREFIX/lib]" echo " --shlibdir=DIR install shared libs in DIR [PREFIX/lib]" @@ -990,8 +990,6 @@ show_list() { for opt do optval="${opt#*=}" case "$opt" in - --log) - ;; --log=*) logging="$optval" ;; --prefix=*) PREFIX="$optval" |