diff options
author | midipix <writeonce@midipix.org> | 2020-01-05 09:55:31 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2020-01-05 09:56:37 +0000 |
commit | a89863fdf97b55dab576685a19080c28d239e803 (patch) | |
tree | 9eede083a7b25fe46a93e34524a1a1dcc76c66fd /configure | |
parent | 9c54f8ce98941ca13b8ec4a2889ec1b5a6d1d4f5 (diff) | |
download | bfirm-a89863fdf97b55dab576685a19080c28d239e803.tar.bz2 bfirm-a89863fdf97b55dab576685a19080c28d239e803.tar.xz |
build system: informative output: pretty printing.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -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() |