Received: from wolfsden.cz (wolfsden.cz [37.205.8.62]) by nld3-dev1.alpinelinux.org (Postfix) with ESMTPS id 880CC782E78 for <~alpine/aports@lists.alpinelinux.org>; Sun, 26 Jan 2020 20:03:22 +0000 (UTC) Received: by wolfsden.cz (Postfix, from userid 110) id E9A5915F4DD; Sun, 26 Jan 2020 20:03:20 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on wolfsden X-Spam-Level: X-Spam-Status: No, score=-2.1 required=5.0 tests=ALL_TRUSTED,BAYES_00, DKIM_ADSP_ALL,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.2 Received: from localhost (unknown [128.0.188.242]) by wolfsden.cz (Postfix) with ESMTPSA id 5950D15F44A; Sun, 26 Jan 2020 20:03:20 +0000 (UTC) From: Wolf To: ~alpine/aports@lists.alpinelinux.org Cc: Wolf Subject: [PATCH] main/alpine-baselayout: Properly export LANG, CHARSET, ... Date: Sun, 26 Jan 2020 21:03:15 +0100 Message-Id: <20200126200315.296897-1-wolf@wolfsden.cz> X-Mailer: git-send-email 2.25.0 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 --- 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