Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 16 Jan 2021 06:08:04 GMT
From:      Kyle Evans <kevans@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org
Subject:   git: 0bc776f3da70 - main - make check: suppress echo of kyua binary location
Message-ID:  <202101160608.10G684vH036884@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch main has been updated by kevans:

URL: https://cgit.FreeBSD.org/src/commit/?id=0bc776f3da709e28bf0e22854da0467ea108be1a

commit 0bc776f3da709e28bf0e22854da0467ea108be1a
Author:     Kyle Evans <kevans@FreeBSD.org>
AuthorDate: 2021-01-16 06:06:49 +0000
Commit:     Kyle Evans <kevans@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; \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202101160608.10G684vH036884>