diff options
author | Bill Nottingham <notting@redhat.com> | 2007-02-19 22:21:47 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2007-02-19 22:21:47 +0000 |
commit | 67e2353319ab7e8ede293409d34d2b849a607816 (patch) | |
tree | 42f7f5d7f9b601d1cd7792974aafe78793144457 | |
parent | c4ccfb343d04048fca53e0c2242ca3578dae73b2 (diff) | |
download | initscripts-67e2353319ab7e8ede293409d34d2b849a607816.tar initscripts-67e2353319ab7e8ede293409d34d2b849a607816.tar.gz initscripts-67e2353319ab7e8ede293409d34d2b849a607816.tar.bz2 initscripts-67e2353319ab7e8ede293409d34d2b849a607816.tar.xz initscripts-67e2353319ab7e8ede293409d34d2b849a607816.zip |
if $LANG is set, don't override it (#229102)
-rwxr-xr-x | lang.csh | 8 | ||||
-rwxr-xr-x | lang.sh | 11 |
2 files changed, 14 insertions, 5 deletions
@@ -1,12 +1,16 @@ # /etc/profile.d/lang.csh - set i18n stuff set sourced=0 -foreach file (/etc/sysconfig/i18n $HOME/.i18n) +if ($?LANG) then + set sourced=1 +else + foreach file (/etc/sysconfig/i18n $HOME/.i18n) if ( -f $file ) then eval `grep -v '^[:blank:]*#' $file | sed 's|\([^=]*\)=\([^=]*\)|setenv \1 \2|g' | sed 's|$|;|'` endif set sourced=1 -end + end +endif if ($?GDM_LANG) then set sourced=1 @@ -1,9 +1,14 @@ # /etc/profile.d/lang.sh - set i18n stuff sourced=0 -for langfile in /etc/sysconfig/i18n $HOME/.i18n ; do - [ -f $langfile ] && . $langfile && sourced=1 -done + +if [ -n "$LANG" ]; then + sourced=1 +else + for langfile in /etc/sysconfig/i18n $HOME/.i18n ; do + [ -f $langfile ] && . $langfile && sourced=1 + done +fi if [ -n "$GDM_LANG" ]; then sourced=1 |