From 86bb11662557bebdceef6b40cfd19e869a7ecc13 Mon Sep 17 00:00:00 2001 From: orbea Date: Mon, 23 Oct 2017 23:41:52 -0700 Subject: [PATCH] qb: Fix alignment in ./configure --help. --- qb/qb.params.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/qb/qb.params.sh b/qb/qb.params.sh index e708f0390e..d37419e6a5 100644 --- a/qb/qb.params.sh +++ b/qb/qb.params.sh @@ -2,7 +2,7 @@ print_help_option() # $1 = option $@ = description { _opt="$1" shift 1 - printf " %-25s %s\n" "$_opt" "$@" + printf ' %-26s %s\n' "$_opt" "$@" } print_help() @@ -38,12 +38,12 @@ EOF 'yes'*) print_help_option "--disable-$VAR" "Disable $COMMENT";; 'no'*) - print_help_option "--enable-$VAR" "Enable $COMMENT";; + print_help_option "--enable-$VAR" "Enable $COMMENT";; 'auto'*) - print_help_option "--enable-$VAR" "Enable $COMMENT" + print_help_option "--enable-$VAR" "Enable $COMMENT" print_help_option "--disable-$VAR" "Disable $COMMENT";; *) - print_help_option "--with-$VAR" "Config $COMMENT";; + print_help_option "--with-$VAR" "Config $COMMENT";; esac esac done < 'qb/config.params.sh'