From 637aefc2a4f6351380de07cb7153b4bd8b7c2709 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Mon, 15 May 2006 17:10:06 +0000 Subject: [PATCH] fix bash_profile so it stops screwing up with en_US has not been built --- .bash_profile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.bash_profile b/.bash_profile index 4e21948..378e08f 100644 --- a/.bash_profile +++ b/.bash_profile @@ -22,6 +22,10 @@ fi # MANPATH=~/man:"${MANPATH}" #fi -LANG="en_US.UTF-8" +if locale -a |grep -qi en_US.utf8; then + LANG="en_US.UTF-8" +else + LANG=C +fi; export LANG -- 2.39.2