diff options
author | midipix <writeonce@midipix.org> | 2020-01-05 09:55:31 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2020-01-05 09:56:40 +0000 |
commit | 5ca21d2fa2f9f6cc8ea6ead566fab5fa77b391e4 (patch) | |
tree | 2dcdbb9c0baf20a9ac719e7f1999ce65af2b4917 /configure | |
parent | f5cd0c766940a642ef40f368876c00a7fbfb967b (diff) | |
download | sofort-5ca21d2fa2f9f6cc8ea6ead566fab5fa77b391e4.tar.bz2 sofort-5ca21d2fa2f9f6cc8ea6ead566fab5fa77b391e4.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() |