diff options
author | Sven Gothel <[email protected]> | 2021-01-29 00:37:58 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2021-01-29 00:37:58 +0100 |
commit | 6a1c83ab11c3a1a93cde90669e5770602a29d6af (patch) | |
tree | a21140d107f2ed95cf21a7397a41535ec9b95ee1 /scripts/build.sh | |
parent | 272823b27e134217efa450971d7e00fa50c44241 (diff) |
locale: Add LC_ALL and hint to set system (testing requires proper unified setup)
Diffstat (limited to 'scripts/build.sh')
-rw-r--r-- | scripts/build.sh | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/scripts/build.sh b/scripts/build.sh index 77685a09..6d77c211 100644 --- a/scripts/build.sh +++ b/scripts/build.sh @@ -16,9 +16,11 @@ fi CPU_COUNT=`getconf _NPROCESSORS_ONLN` -# run 'dpkg-reconfigure locales' enable 'en_US.UTF-8' -export LANG=en_US.UTF-8 +# run as root 'dpkg-reconfigure locales' enable 'en_US.UTF-8' +# perhaps run as root 'update-locale LC_MEASUREMENT=en_US.UTF-8 LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8' export LC_MEASUREMENT=en_US.UTF-8 +export LC_ALL=en_US.UTF-8 +export LANG=en_US.UTF-8 buildit() { echo rootdir $rootdir |