From 68e0b5dddceaf559952e4ad6ed4106aaf9c0398b Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Wed, 24 Dec 2025 15:51:34 +0100 Subject: init.sh: Explicitly export UTF-8 locale C.UTF-8, instead of just C. This fixes a build issue in GRUB on my Arch Linux test bench. Signed-off-by: Leah Rowe --- include/init.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/init.sh b/include/init.sh index abd06862..cde489dd 100644 --- a/include/init.sh +++ b/include/init.sh @@ -5,8 +5,9 @@ # Copyright (c) 2020-2025 Leah Rowe # Copyright (c) 2025 Alper Nebi Yasak -export LC_COLLATE=C -export LC_ALL=C +export LANG=C.UTF-8 +export LC_COLLATE=C.UTF-8 +export LC_ALL=C.UTF-8 projectname="libreboot" projectsite="https://libreboot.org/" -- cgit v1.2.1