From c42a67671b4a79405982b96935c282943b7df8e5 Mon Sep 17 00:00:00 2001 From: Brooks Davis Date: Mon, 30 Mar 2020 20:04:55 +0000 Subject: [PATCH] Relax existence check of ${LOCALBASE}/bin/kyua After the base kyua import the testsuite can utilize the in-base kyua just fine. Submitted by: Dries Michiels Differential Revision: https://reviews.freebsd.org/D24230 --- Makefile.inc1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.inc1 b/Makefile.inc1 index 1a143481a0c4..4761c138a7e9 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -1988,7 +1988,7 @@ sign-packages: _pkgbootstrap .PHONY # Run test suite on installed world. # checkworld: .PHONY - @if [ ! -x "${LOCALBASE}/bin/kyua" ]; then \ + @if [ ! -x "${LOCALBASE}/bin/kyua" ] && [ ! -x "/usr/bin/kyua" ]; then \ echo "You need kyua (devel/kyua) to run the test suite." | /usr/bin/fmt; \ exit 1; \ fi