Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 12 Nov 2025 13:53:51 GMT
From:      Robert Clausecker <fuz@FreeBSD.org>
To:        ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org
Subject:   git: 3fc9bb9131b4 - main - lang/kefir: fix test suite
Message-ID:  <202511121353.5ACDrpr2048803@gitrepo.freebsd.org>

index | next in thread | raw e-mail

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>


home | help

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