diff options
author | Måns Rullgård <mans@mansr.com> | 2008-10-21 00:57:17 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2008-10-21 00:57:17 +0000 |
commit | 884a36a78badab059ed6857d6b69205063510768 (patch) | |
tree | a8baee4b811a4d69b204e5429d2a3b758af5917d /configure | |
parent | 31c4f07017f54dac8b45147adcd9feee01c1983d (diff) | |
download | ffmpeg-884a36a78badab059ed6857d6b69205063510768.tar.gz |
configure: fix handling of option arguments containing = sign
Originally committed as revision 15656 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1104,7 +1104,7 @@ for opt do --help|-h) show_help ;; *) - optname="${opt%=*}" + optname="${opt%%=*}" optname="${optname#--}" optname=$(echo "$optname" | sed 's/-/_/g') is_in $optname $CMDLINE_SET || die_unknown $opt |