git: 3fc9bb9131b4 - main - lang/kefir: fix test suite

From: Robert Clausecker <fuz_at_FreeBSD.org>
Date: Wed, 12 Nov 2025 13:53:51 UTC
The branch main has been updated by fuz:

URL: https://cgit.FreeBSD.org/ports/commit/?id=3fc9bb9131b4127d35af0222fe3f01997ab7ddd7

commit 3fc9bb9131b4127d35af0222fe3f01997ab7ddd7
Author:     Robert Clausecker <fuz@FreeBSD.org>
AuthorDate: 2025-11-07 14:09:10 +0000
Commit:     Robert Clausecker <fuz@FreeBSD.org>
CommitDate: 2025-11-12 13:53:33 +0000

    lang/kefir: fix test suite
    
    The compiler as well as the test suite only run in a Unicode locale.
    Provide one.
---
 lang/kefir/Makefile | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/lang/kefir/Makefile b/lang/kefir/Makefile
index 66a3974bbd07..a9f14377d04b 100644
--- a/lang/kefir/Makefile
+++ b/lang/kefir/Makefile
@@ -21,10 +21,13 @@ TEST_DEPENDS=	bash:shells/bash
 
 USES=		gmake
 USE_LDCONFIG=	yes
-TEST_TARGET= 	test
+
 MAKE_ARGS=	prefix=${PREFIX}
 .if "${WITH_DEBUG}" == "yes"
 MAKE_ARGS+=	PROFILE=debug
 .endif
 
+TEST_ENV=	LC_ALL=C.UTF-8
+TEST_TARGET= 	test
+
 .include <bsd.port.mk>