summaryrefslogtreecommitdiff
path: root/sofort
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2021-06-05 03:44:32 +0000
committermidipix <writeonce@midipix.org>2021-06-05 03:50:05 +0000
commit71c74bd52ed4115960c1bf7426323c8ada8f6682 (patch)
treec42cc91d9b5b0d8361e6fcf449f2f1942ee2c7f4 /sofort
parent5ca6f586df4124405fad47e3f33e2b70c6745684 (diff)
downloadtpax-71c74bd52ed4115960c1bf7426323c8ada8f6682.tar.bz2
tpax-71c74bd52ed4115960c1bf7426323c8ada8f6682.tar.xz
build system: cfgtest_prolog(), cfgtest_epilog(): respect cfgtest_silent[=yes].
Diffstat (limited to 'sofort')
-rw-r--r--sofort/cfgtest/cfgtest.sh13
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'