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 | 04622fda037f73ca6f92b72471dd7539aaa274ef (patch) | |
tree | b0efa866293fc00af991aff9af876a69c0a870c6 /configure | |
parent | c5a7c76183a31b8f0878d3e420adc4d97cded657 (diff) | |
download | sltdl-04622fda037f73ca6f92b72471dd7539aaa274ef.tar.bz2 sltdl-04622fda037f73ca6f92b72471dd7539aaa274ef.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}" } |