summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2025-12-24 15:51:34 +0100
committerLeah Rowe <leah@libreboot.org>2025-12-24 17:16:10 +0100
commit68e0b5dddceaf559952e4ad6ed4106aaf9c0398b (patch)
tree43b6b64872e201caf30bce4e9eacf01ec7950601
parentb990d54cffdf0a6c43bfda72a7ef49ef1c3d31b5 (diff)
init.sh: Explicitly export UTF-8 localeHEADmaster
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 <leah@libreboot.org>
-rw-r--r--include/init.sh5
1 files 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 <leah@libreboot.org>
# Copyright (c) 2025 Alper Nebi Yasak <alpernebiyasak@gmail.com>
-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/"