aboutsummaryrefslogtreecommitdiffstats
path: root/setsysfont
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2002-01-30 16:40:58 +0000
committerBill Nottingham <notting@redhat.com>2002-01-30 16:40:58 +0000
commitb5ad17b10bceff311be7d9c6a95c6d6f0da2c552 (patch)
tree7c264536c2461049a18a6e36f8be66a356715ad7 /setsysfont
parentf855f07639d835eac3cc2eaddc801434e529ae59 (diff)
downloadinitscripts-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-xsetsysfont8
1 files changed, 4 insertions, 4 deletions
diff --git a/setsysfont b/setsysfont
index 30a0b8bc..8c524c88 100755
--- a/setsysfont
+++ b/setsysfont
@@ -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"