mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-01-08 13:22:53 +02:00
Speed up show_list
Originally committed as revision 10920 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
parent
1b1656c67f
commit
bf0c4afab2
10
configure
vendored
10
configure
vendored
@ -936,9 +936,9 @@ die_unknown(){
|
||||
}
|
||||
|
||||
show_list() {
|
||||
for part in $*; do
|
||||
echo $part | sed 's/_[^_]*$//'
|
||||
done | sort
|
||||
suffix=_$1
|
||||
shift
|
||||
echo $* | sed s/$suffix//g | tr ' ' '\n' | sort
|
||||
exit 0
|
||||
}
|
||||
|
||||
@ -1016,8 +1016,8 @@ for opt do
|
||||
--list-*)
|
||||
NAME="${opt#--list-}"
|
||||
is_in $NAME $COMPONENT_LIST || die_unknown $opt
|
||||
NAME=$(toupper ${NAME%s})
|
||||
eval show_list \$${NAME}_LIST
|
||||
NAME=${NAME%s}
|
||||
eval show_list $NAME \$$(toupper $NAME)_LIST
|
||||
;;
|
||||
--help|-h) show_help
|
||||
;;
|
||||
|
Loading…
Reference in New Issue
Block a user