summaryrefslogtreecommitdiff
path: root/sofort
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2021-03-21 08:43:18 +0000
committermidipix <writeonce@midipix.org>2021-03-23 09:55:09 +0000
commit35f32bfe38aab6f7782c0c3a2c7f2cbf72f51222 (patch)
treef9bca2b7a573cd0c856a14a7153a8ed071323538 /sofort
parentb5ce709000afeb1b33fd4a116a8abd666dcbe9a3 (diff)
downloadbfirm-35f32bfe38aab6f7782c0c3a2c7f2cbf72f51222.tar.bz2
bfirm-35f32bfe38aab6f7782c0c3a2c7f2cbf72f51222.tar.xz
build system: ccenv_{tool|attr}_epilog(): properly handle long output strings.
Diffstat (limited to 'sofort')
-rw-r--r--sofort/ccenv/ccenv.sh10
1 files changed, 10 insertions, 0 deletions
diff --git a/sofort/ccenv/ccenv.sh b/sofort/ccenv/ccenv.sh
index fd09506..4b91387 100644
--- a/sofort/ccenv/ccenv.sh
+++ b/sofort/ccenv/ccenv.sh
@@ -68,6 +68,11 @@ ccenv_tool_epilog()
ccenv_line_dots='................................'
ccenv_tool_dlen="$((${#ccenv_line_dots} - ${#1}))"
+ case ${ccenv_tool_dlen} in
+ 0 | -* )
+ ccenv_tool_dlen='3' ;;
+ esac
+
printf "%${ccenv_tool_dlen}.${ccenv_tool_dlen}s %s.\n" \
"${ccenv_line_dots}" "${1}"
@@ -110,6 +115,11 @@ ccenv_attr_epilog()
ccenv_line_dots='................................'
ccenv_tool_dlen="$((${#ccenv_line_dots} - 1 - ${#1}))"
+ case ${ccenv_tool_dlen} in
+ 0 | -* )
+ ccenv_tool_dlen='3' ;;
+ esac
+
printf "%${ccenv_tool_dlen}.${ccenv_tool_dlen}s %s.\n" \
"${ccenv_line_dots}" "${1}"