diff options
author | midipix <writeonce@midipix.org> | 2021-06-13 09:14:26 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-13 09:17:31 +0000 |
commit | 9a6d0dee7509660f2db0dde73fba2789830103b3 (patch) | |
tree | 83cc9924757beacbf3b4b9489038281ed4c368d2 | |
parent | 0e40a8f4573e7a7b3fd97b157b1fb4e587b1c8cc (diff) | |
download | tpax-9a6d0dee7509660f2db0dde73fba2789830103b3.tar.bz2 tpax-9a6d0dee7509660f2db0dde73fba2789830103b3.tar.xz |
build system: configure: output_step_prolog(): step might not be a function.
-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}" } |