From 9eda2a85c64e5551fd5ee47285834e7b33b48080 Mon Sep 17 00:00:00 2001 From: Mans Rullgard Date: Sat, 27 Oct 2012 19:11:04 +0100 Subject: configure: remove support for -n flag in print_enabled() This flag is no longer used. Signed-off-by: Mans Rullgard --- configure | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/configure b/configure index a66a7ffce3..163b742412 100755 --- a/configure +++ b/configure @@ -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 } -- cgit v1.2.3