diff options
author | Bill Nottingham <notting@redhat.com> | 1999-04-06 20:43:53 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 1999-04-06 20:43:53 +0000 |
commit | ac0106eb9bbb0adb00cfdf0c809546d2816f2600 (patch) | |
tree | 277aab3ab5238d06f8734ff2e3ce787fbe40043f | |
parent | 4fd4ed3cd6e0282f1b29991e04e175fd3a587628 (diff) | |
download | initscripts-ac0106eb9bbb0adb00cfdf0c809546d2816f2600.tar initscripts-ac0106eb9bbb0adb00cfdf0c809546d2816f2600.tar.gz initscripts-ac0106eb9bbb0adb00cfdf0c809546d2816f2600.tar.bz2 initscripts-ac0106eb9bbb0adb00cfdf0c809546d2816f2600.tar.xz initscripts-ac0106eb9bbb0adb00cfdf0c809546d2816f2600.zip |
consolechars is in /bin
-rwxr-xr-x | setsysfont | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ if [ -f /etc/sysconfig/i18n ]; then . /etc/sysconfig/i18n fi -if [ -x /usr/bin/consolechars ]; then +if [ -x /bin/consolechars ]; then if [ -n "$SYSFONT" ]; then ARGS=$SYSFONT if [ -n "$UNIMAP" ]; then @@ -13,7 +13,7 @@ if [ -x /usr/bin/consolechars ]; then if [ -n "$SYSFONTACM" ]; then ARGS="$ARGS --acm $SYSFONTACM" fi - /usr/bin/consolechars -f $ARGS + /bin/consolechars -f $ARGS fi elif [ -x /usr/bin/setfont ]; then if [ -n "$SYSFONT" -a -n "$UNIMAP" ]; then |