diff options
author | midipix <writeonce@midipix.org> | 2021-06-13 09:14:26 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-13 09:17:28 +0000 |
commit | 3f69a3782021cdb154362d56122614d85373af06 (patch) | |
tree | ac604af183cb128c84040f5d98f8cdfcef21cef1 | |
parent | a5c3be8d89a683956ec6ad85571d3c48b2524a8a (diff) | |
download | bcparser-3f69a3782021cdb154362d56122614d85373af06.tar.bz2 bcparser-3f69a3782021cdb154362d56122614d85373af06.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}" } |