When 55464083de768e34737154e10544bb0be12bcf04 moved lang related
settings to separate file (/etc/profile.d/locale), it removed export
from them. That causes only shell to see those variables, not any
programs spawned from the shell.
This commit puts the export back int.
Signed-off-by: Wolf <wolf@wolfsden.cz>
---
main/alpine-baselayout/locale | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/main/alpine-baselayout/locale b/main/alpine-baselayout/locale
index 0b29557277..bf75c08272 100644
--- a/main/alpine-baselayout/locale
+++ b/main/alpine-baselayout/locale
@@ -1,3 +1,3 @@
-CHARSET=UTF-8
-LANG=C.UTF-8
-LC_COLLATE=C
+export CHARSET=UTF-8
+export LANG=C.UTF-8
+export LC_COLLATE=C
--
2.25.0