diff options
author | midipix <writeonce@midipix.org> | 2021-06-05 03:44:32 +0000 |
---|---|---|
committer | midipix <writeonce@midipix.org> | 2021-06-05 03:44:32 +0000 |
commit | 23e26984c1be037f5fc6ffc9510808d2967ab10f (patch) | |
tree | 5a265e52b3af3eca3e13f052f34fd07517e9a1a2 /sofort/cfgtest | |
parent | d44b0b9ad093ba05591fb36e7863c6c85e215829 (diff) | |
download | slibtool-23e26984c1be037f5fc6ffc9510808d2967ab10f.tar.bz2 slibtool-23e26984c1be037f5fc6ffc9510808d2967ab10f.tar.xz |
build system: cfgtest_prolog(), cfgtest_epilog(): respect cfgtest_silent[=yes].
Diffstat (limited to 'sofort/cfgtest')
-rw-r--r-- | sofort/cfgtest/cfgtest.sh | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/sofort/cfgtest/cfgtest.sh b/sofort/cfgtest/cfgtest.sh index 478826e..7e58a7e 100644 --- a/sofort/cfgtest/cfgtest.sh +++ b/sofort/cfgtest/cfgtest.sh @@ -83,8 +83,11 @@ cfgtest_prolog() printf '\n%s\n' '________________________' >&3 printf "cfgtest: probing for ${mb_cfgtest_cfgtype} ${1}: ${2}\n\n" >&3 - printf "%${cfgtest_tool_dlen}.${cfgtest_tool_dlen}s" \ - "${cfgtest_tool_desc} ${mb_line_dots}" + + if [ "${cfgtest_silent:-}" != 'yes' ]; then + printf "%${cfgtest_tool_dlen}.${cfgtest_tool_dlen}s" \ + "${cfgtest_tool_desc} ${mb_line_dots}" + fi } @@ -93,8 +96,10 @@ cfgtest_epilog() cfgtest_line_dots='...............' cfgtest_tool_dlen="$((${#cfgtest_line_dots} - ${#2}))" - printf "%${cfgtest_tool_dlen}.${cfgtest_tool_dlen}s %s.\n" \ - "${cfgtest_line_dots}" "${2}" + if [ "${cfgtest_silent:-}" != 'yes' ]; then + printf "%${cfgtest_tool_dlen}.${cfgtest_tool_dlen}s %s.\n" \ + "${cfgtest_line_dots}" "${2}" + fi if [ "${1}" = 'snippet' ] && [ -f 'a.out' ]; then rm -f 'a.out' |