The branch main has been updated by kevans: URL: https://cgit.FreeBSD.org/src/commit/?id=0bc776f3da709e28bf0e22854da0467ea108be1a
commit 0bc776f3da709e28bf0e22854da0467ea108be1a Author: Kyle Evans <kev...@freebsd.org> AuthorDate: 2021-01-16 06:06:49 +0000 Commit: Kyle Evans <kev...@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; \ _______________________________________________ dev-commits-src-all@freebsd.org mailing list https://lists.freebsd.org/mailman/listinfo/dev-commits-src-all To unsubscribe, send any mail to "dev-commits-src-all-unsubscr...@freebsd.org"