diff options
author | midipix <writeonce@midipix.org> | 2021-06-13 09:14:26 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-13 09:17:29 +0000 |
commit | 19755b9d0669977038128a63752e5b35df5f6d83 (patch) | |
tree | 20e030ab2425cf0f4a87adcc40efa3bfa6a4ef59 /configure | |
parent | 8917cbdf95a70908015fa7236eebdb584b5f8a3e (diff) | |
download | dalist-19755b9d0669977038128a63752e5b35df5f6d83.tar.bz2 dalist-19755b9d0669977038128a63752e5b35df5f6d83.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}" } |