diff options
author | midipix <writeonce@midipix.org> | 2021-06-13 09:14:26 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-13 09:17:30 +0000 |
commit | 3f94e11770bd779ed4b05da0e9417ad92395d0ec (patch) | |
tree | 0d49c69d42a3376f788601893f8202ca5b563828 /configure | |
parent | e26d566833d83ff5663b6e5b63938e951ad24d39 (diff) | |
download | sbpython3-3f94e11770bd779ed4b05da0e9417ad92395d0ec.tar.bz2 sbpython3-3f94e11770bd779ed4b05da0e9417ad92395d0ec.tar.xz |
build system: configure: output_step_prolog(): step might not be a function.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -53,10 +53,10 @@ output_step_prolog() { mb_line_dots='.................................' mb_line_dots="${mb_line_dots}.${mb_line_dots}" - mb_step_desc="${mb_package} : ${1##*/} : ${2}() " + mb_step_desc="${mb_package} : ${1##*/} : ${2} " mb_step_dlen="$((${#mb_line_dots} - ${#mb_step_desc}))" - printf "configure step: ${2}()\n" >&3 + printf "configure step: ${2}\n" >&3 printf "%s%${mb_step_dlen}.${mb_step_dlen}s " "${mb_step_desc}" "${mb_line_dots}" } |