diff options
author | Bill Nottingham <notting@redhat.com> | 2009-03-24 17:04:13 -0400 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2009-03-24 17:04:13 -0400 |
commit | bb45289856fe0027bb62f024b01802f1eccf5142 (patch) | |
tree | 7abaf7a3fecd0e9e95931d2b84f7c8ca86f9e625 /setsysfont | |
parent | 590dd4c68e2708b4037b86b51c8dcd07ae8f6fd2 (diff) | |
download | initscripts-bb45289856fe0027bb62f024b01802f1eccf5142.tar initscripts-bb45289856fe0027bb62f024b01802f1eccf5142.tar.gz initscripts-bb45289856fe0027bb62f024b01802f1eccf5142.tar.bz2 initscripts-bb45289856fe0027bb62f024b01802f1eccf5142.tar.xz initscripts-bb45289856fe0027bb62f024b01802f1eccf5142.zip |
Honor LC_CTYPE (#487133, <skasal@redhat.com>)
Diffstat (limited to 'setsysfont')
-rwxr-xr-x | setsysfont | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -6,7 +6,7 @@ if [ -f /etc/sysconfig/i18n ]; then . /etc/sysconfig/i18n fi -case "$LANG" in +case ${LC_ALL:-${LC_CTYPE-$LANG}} in *.utf8|*.UTF-8) if [ -x /bin/unicode_start ] && /sbin/consoletype fg ; then exec unicode_start $SYSFONT $SYSFONTACM |