David Runge pushed to branch main at Arch Linux / Packaging / Packages /
filesystem
Commits:
8305afe4 by Filip Hejsek at 2024-07-01T16:41:12+00:00
Change default LANG to C.UTF-8
The C locale does not support unicode. Use the C.UTF-8 locale instead.
C.UTF-8 is included in the glibc package so it should always be available on
the system.
- - - - -
1 changed file:
- locale.sh
Changes:
=====================================
locale.sh
=====================================
@@ -13,8 +13,8 @@ if [ -z "$LANG" ]; then
fi
fi
-# define default LANG to C if not already defined
-LANG=${LANG:-C}
+# define default LANG to C.UTF-8 if not already defined
+LANG=${LANG:-C.UTF-8}
# export all locale (7) variables when they exist
export LANG LANGUAGE LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY \
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/filesystem/-/commit/8305afe46a20772ed2d9addd09d7eb353f63057c
--
View it on GitLab:
https://gitlab.archlinux.org/archlinux/packaging/packages/filesystem/-/commit/8305afe46a20772ed2d9addd09d7eb353f63057c
You're receiving this email because of your account on gitlab.archlinux.org.