Changed LANG variable for HP-UX 10.

This commit is contained in:
hjp 1996-10-26 18:21:04 +00:00
parent e8a6de417c
commit 79cde40bb0
1 changed files with 9 additions and 2 deletions

11
.zshenv
View File

@ -60,8 +60,15 @@ do
done done
export PATH=$NEW_PATH export PATH=$NEW_PATH
export LANG=american.iso88591 case `uname -sr` in
export LC_COLLATE=american.iso88591@nofold HP-UX*09.*)
export LANG=${LANG:-american.iso88591}
export LC_COLLATE=${LC_COLLATE:-american.iso88591@nofold}
;;
HP-UX*10.*)
export LANG=${LANG:-C.iso88591}
;;
esac
if test "`uname`" = HP-UX if test "`uname`" = HP-UX
then then
# need to set that explicitely on HP-UX. MESZ isn't standard, so # need to set that explicitely on HP-UX. MESZ isn't standard, so