Commit dd98db77 authored by mru's avatar mru

configure: fix handling of option arguments containing = sign

git-svn-id: file:///var/local/repositories/ffmpeg/trunk@15656 9553f0bf-9b14-0410-a0b8-cfaf0461ba5b
parent c578e1ca
......@@ -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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment