diff options
author | Bill Nottingham <notting@redhat.com> | 2000-02-04 22:16:33 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2000-02-04 22:16:33 +0000 |
commit | 7304d8f4c7276c6f1f7163ca4d041968c24c2b3e (patch) | |
tree | 0ee437b7c70f92a8d59c7d81a0a40b57302a08bf /lang.csh | |
parent | 4a22427c72315f0cb76041cb1fad460ad0791edb (diff) | |
download | initscripts-7304d8f4c7276c6f1f7163ca4d041968c24c2b3e.tar initscripts-7304d8f4c7276c6f1f7163ca4d041968c24c2b3e.tar.gz initscripts-7304d8f4c7276c6f1f7163ca4d041968c24c2b3e.tar.bz2 initscripts-7304d8f4c7276c6f1f7163ca4d041968c24c2b3e.tar.xz initscripts-7304d8f4c7276c6f1f7163ca4d041968c24c2b3e.zip |
if LC_ALL/LINGUAS == LANG, don't set them
Diffstat (limited to 'lang.csh')
-rwxr-xr-x | lang.csh | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -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) |