diff options
author | Bill Nottingham <notting@redhat.com> | 2000-07-25 17:05:09 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2000-07-25 17:05:09 +0000 |
commit | 96fd997517c71fc483686eef2a95e3df07c3a336 (patch) | |
tree | dd535b79531bbea0f99aa8b375ae8fc18068dc47 /lang.csh | |
parent | 2ec9979c7df9592a577c86792bec17fe7103c80e (diff) | |
download | initscripts-96fd997517c71fc483686eef2a95e3df07c3a336.tar initscripts-96fd997517c71fc483686eef2a95e3df07c3a336.tar.gz initscripts-96fd997517c71fc483686eef2a95e3df07c3a336.tar.bz2 initscripts-96fd997517c71fc483686eef2a95e3df07c3a336.tar.xz initscripts-96fd997517c71fc483686eef2a95e3df07c3a336.zip |
fix testr5-37
Diffstat (limited to 'lang.csh')
-rwxr-xr-x | lang.csh | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -2,8 +2,7 @@ set sourced=0 foreach file (/etc/sysconfig/i18n $HOME/.i18n) - test -f $file - if ($status == 0) then + if ( -f $file ) then eval `sed 's|=C$|=en_US|g' $file | sed 's|\([^=]*\)=\([^=]*\)|setenv \1 \2|g' | sed 's|$|;|' ` endif set sourced=1 |