From 9d04ad551bb95fe93520c65d78ff2c3bae47c9e5 Mon Sep 17 00:00:00 2001 From: midipix Date: Sun, 5 Jan 2020 09:55:31 +0000 Subject: build system: informative output: pretty printing. --- configure | 8 ++++---- sofort/ccenv/ccenv.sh | 14 +++++++------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/configure b/configure index 75aea0b..9bab0f3 100755 --- a/configure +++ b/configure @@ -48,13 +48,13 @@ warning_msg() output_step_prolog() { - mb_line_dots='..................................' - mb_line_dots="${mb_line_dots}${mb_line_dots}" - mb_step_desc="${mb_package} : ${1##*/} : ${2}() " + mb_line_dots='.................................' + mb_line_dots="${mb_line_dots}.${mb_line_dots}" + mb_step_desc="${mb_package} : ${1##*/} : ${2}() " mb_step_dlen="$((${#mb_line_dots} - ${#mb_step_desc}))" printf "configure step: ${2}()\n" >&3 - printf "%s%${mb_step_dlen}.${mb_step_dlen}s " "${mb_step_desc}" "${mb_line_dots}" + printf "%s%${mb_step_dlen}.${mb_step_dlen}s " "${mb_step_desc}" "${mb_line_dots}" } output_step_epilog() diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh index f761b67..113a74e 100644 --- a/sofort/ccenv/ccenv.sh +++ b/sofort/ccenv/ccenv.sh @@ -50,14 +50,14 @@ ccenv_comment() ccenv_tool_prolog() { - ccenv_line_dots='......................................' + ccenv_line_dots='.....................................' ccenv_tool_desc="=== checking for ${1}" ccenv_tool_dlen="${#ccenv_line_dots}" printf '\n%s\n' '________________________' >&3 printf "ccenv: checking for ${1}\n\n" >&3 printf "%${ccenv_tool_dlen}.${ccenv_tool_dlen}s" \ - "${ccenv_tool_desc} ${mb_line_dots}" + "${ccenv_tool_desc} ${mb_line_dots}" } @@ -66,7 +66,7 @@ ccenv_tool_epilog() ccenv_line_dots='................................' ccenv_tool_dlen="$((${#ccenv_line_dots} - ${#1}))" - printf "%${ccenv_tool_dlen}.${ccenv_tool_dlen}s %s.\n" \ + printf "%${ccenv_tool_dlen}.${ccenv_tool_dlen}s %s.\n" \ "${ccenv_line_dots}" "${1}" if [ "${1}" = 'false' ]; then @@ -91,8 +91,8 @@ ccenv_tool_variant_epilog() ccenv_attr_prolog() { - ccenv_line_dots='......................................' - ccenv_attr_desc="=== detect ${ccenv_cfgtype} ${1}" + ccenv_line_dots=' .....................................' + ccenv_attr_desc=" == detect ${ccenv_cfgtype} ${1}" ccenv_attr_dlen="${#ccenv_line_dots}" printf "%${ccenv_attr_dlen}.${ccenv_attr_dlen}s" \ @@ -106,9 +106,9 @@ ccenv_attr_prolog() ccenv_attr_epilog() { ccenv_line_dots='................................' - ccenv_tool_dlen="$((${#ccenv_line_dots} - ${#1}))" + ccenv_tool_dlen="$((${#ccenv_line_dots} - 1 - ${#1}))" - printf "%${ccenv_tool_dlen}.${ccenv_tool_dlen}s %s.\n" \ + printf "%${ccenv_tool_dlen}.${ccenv_tool_dlen}s %s.\n" \ "${ccenv_line_dots}" "${1}" printf '\n\nccenv: detected result: %s\n' "${1}" >&3 -- cgit v1.2.3