1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-10 06:10:52 +02:00

configure: remove support for -n flag in print_enabled()

This flag is no longer used.

Signed-off-by: Mans Rullgard <mans@mansr.com>
This commit is contained in:
Mans Rullgard
2012-10-27 19:11:04 +01:00
parent faf340f60c
commit 9eda2a85c6

3
configure vendored
View File

@@ -592,11 +592,10 @@ print_config(){
}
print_enabled(){
test x"$1" = x-n && end=" " && shift || end="\n"
suf=$1
shift
for v; do
enabled $v && printf "%s$end" ${v%$suf};
enabled $v && printf "%s\n" ${v%$suf};
done
}