diff options
author | midipix <writeonce@midipix.org> | 2020-01-05 09:55:31 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2020-01-05 09:56:38 +0000 |
commit | 1890c2a99acc10d045c9c3988f952f5c513fd748 (patch) | |
tree | 498a5b1e913b0b727bbc5a432e8f48dd1c92d9e0 /sofort | |
parent | cbce578f27e28d63982804ba34ff8c2e6d907d6a (diff) | |
download | ntapi-1890c2a99acc10d045c9c3988f952f5c513fd748.tar.bz2 ntapi-1890c2a99acc10d045c9c3988f952f5c513fd748.tar.xz |
build system: informative output: pretty printing.
Diffstat (limited to 'sofort')
-rw-r--r-- | sofort/ccenv/ccenv.sh | 14 |
1 files changed, 7 insertions, 7 deletions
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 |