Skip to content
Snippets Groups Projects
Commit 9eda2a85 authored by Mans Rullgard's avatar Mans Rullgard
Browse files

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


This flag is no longer used.

Signed-off-by: default avatarMans Rullgard <mans@mansr.com>
parent faf340f6
No related branches found
No related tags found
No related merge requests found
......@@ -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
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment