diff options
author | Bill Nottingham <notting@redhat.com> | 2002-01-30 16:40:58 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2002-01-30 16:40:58 +0000 |
commit | b5ad17b10bceff311be7d9c6a95c6d6f0da2c552 (patch) | |
tree | 7c264536c2461049a18a6e36f8be66a356715ad7 /setsysfont | |
parent | f855f07639d835eac3cc2eaddc801434e529ae59 (diff) | |
download | initscripts-b5ad17b10bceff311be7d9c6a95c6d6f0da2c552.tar initscripts-b5ad17b10bceff311be7d9c6a95c6d6f0da2c552.tar.gz initscripts-b5ad17b10bceff311be7d9c6a95c6d6f0da2c552.tar.bz2 initscripts-b5ad17b10bceff311be7d9c6a95c6d6f0da2c552.tar.xz initscripts-b5ad17b10bceff311be7d9c6a95c6d6f0da2c552.zip |
run /bin/setfont, not /usr/bin/setfont (kbd change)
Diffstat (limited to 'setsysfont')
-rwxr-xr-x | setsysfont | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -17,13 +17,13 @@ if [ -x /bin/consolechars -o -x /usr/bin/consolechars ]; then fi consolechars -f $ARGS fi -elif [ -x /usr/bin/setfont ]; then +elif [ -x /bin/setfont ]; then if [ -n "$SYSFONT" -a -n "$UNIMAP" ]; then - /usr/bin/setfont $SYSFONT -u $UNIMAP + /bin/setfont $SYSFONT -u $UNIMAP elif [ -n "$SYSFONT" ]; then - /usr/bin/setfont $SYSFONT + /bin/setfont $SYSFONT # else -# /usr/bin/setfont +# /bin/setfont fi else echo $"can't set font" |