From 0bc776f3da709e28bf0e22854da0467ea108be1a Mon Sep 17 00:00:00 2001 From: Kyle Evans Date: Sat, 16 Jan 2021 00:06:49 -0600 Subject: [PATCH] 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; \