diff options
author | Felix Yan <felixonmars@archlinux.org> | 2022-05-27 02:45:06 +0000 |
---|---|---|
committer | Levente Polyak <anthraxx@archlinux.org> | 2022-06-09 01:07:43 +0200 |
commit | 5e98478344fbdecd5f07eb92ef92ee43bc66e1a9 (patch) | |
tree | 5d36b734ad530836eaa8cbf676a0de8befe52a63 | |
parent | 0c61761f33b2cb7613720596ed9373ab0872df31 (diff) | |
download | devtools-5e98478344fbdecd5f07eb92ef92ee43bc66e1a9.tar.xz |
mkarchroot: generate and use C.UTF-8 by default
systemd >= 251 is forcing nspawns to use LANG=C.UTF-8:
https://github.com/systemd/systemd/commit/b626f6959bcee11d966f96bd29a00502f4aa2ce4
It makes sense to generate the C.UTF-8 locate here when using it as the
default LANG value.
Related to: https://bugs.archlinux.org/task/74864
-rw-r--r-- | mkarchroot.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mkarchroot.in b/mkarchroot.in index 8fb52ac..d199bed 100644 --- a/mkarchroot.in +++ b/mkarchroot.in @@ -84,8 +84,8 @@ done unshare --mount pacstrap -${umode}Mcd ${pac_conf:+-C "$pac_conf"} "$working_dir" \ "${cache_dirs[@]/#/--cachedir=}" "$@" || die 'Failed to install all packages' -printf '%s.UTF-8 UTF-8\n' en_US de_DE > "$working_dir/etc/locale.gen" -echo 'LANG=en_US.UTF-8' > "$working_dir/etc/locale.conf" +printf '%s.UTF-8 UTF-8\n' C en_US de_DE > "$working_dir/etc/locale.gen" +echo 'LANG=C.UTF-8' > "$working_dir/etc/locale.conf" echo "$CHROOT_VERSION" > "$working_dir/.arch-chroot" systemd-machine-id-setup --root="$working_dir" |