Commit 9eda2a85 authored by Mans Rullgard's avatar Mans Rullgard

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

This flag is no longer used.
Signed-off-by: 's avatarMans Rullgard <mans@mansr.com>
parent faf340f6
......@@ -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
}
......
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