From 7304d8f4c7276c6f1f7163ca4d041968c24c2b3e Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Fri, 4 Feb 2000 22:16:33 +0000 Subject: if LC_ALL/LINGUAS == LANG, don't set them --- lang.csh | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'lang.csh') diff --git a/lang.csh b/lang.csh index 720e9be8..baa504a2 100755 --- a/lang.csh +++ b/lang.csh @@ -3,6 +3,12 @@ test -f /etc/sysconfig/i18n if ($status == 0) then eval `sed 's|=C$|=en_US|g' /etc/sysconfig/i18n | sed 's|\([^=]*\)=\([^=]*\)|setenv \1 \2|g' | sed 's|$|;|' ` + if ($LC_ALL == $LANG) then + unsetenv LC_ALL + endif + if ($LINGUAS == $LANG) then + unsetenv LINGUAS + endif if ($?SYSFONTACM) then switch ($SYSFONTACM) -- cgit