git: 0bc776f3da70 - main - make check: suppress echo of kyua binary location
Kyle Evans
kevans at FreeBSD.org
Sat Jan 16 06:08:05 UTC 2021
The branch main has been updated by kevans:
URL: https://cgit.FreeBSD.org/src/commit/?id=0bc776f3da709e28bf0e22854da0467ea108be1a
commit 0bc776f3da709e28bf0e22854da0467ea108be1a
Author: Kyle Evans <kevans at FreeBSD.org>
AuthorDate: 2021-01-16 06:06:49 +0000
Commit: Kyle Evans <kevans at FreeBSD.org>
CommitDate: 2021-01-16 06:07:50 +0000
make check: suppress echo of kyua binary location
986deea5b518ee5bf6b8b1486056a21819bd8bd2 inadvertently removed this; fix it.
---
share/mk/suite.test.mk | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/share/mk/suite.test.mk b/share/mk/suite.test.mk
index e772ccd1b292..345aef554424 100644
--- a/share/mk/suite.test.mk
+++ b/share/mk/suite.test.mk
@@ -90,7 +90,7 @@ KYUA?= kyua
# report bogus results unless the new binaries are put in place.
realcheck: .PHONY
- if ! which -s "${KYUA}"; then \
+ @if ! which -s "${KYUA}"; then \
echo; \
echo "kyua binary not installed at expected location (${.TARGET})"; \
echo; \
More information about the dev-commits-src-all
mailing list