diff options
author | Bill Nottingham <notting@redhat.com> | 2005-06-07 16:44:15 +0000 |
---|---|---|
committer | Bill Nottingham <notting@redhat.com> | 2005-06-07 16:44:15 +0000 |
commit | d43a4ad6e329b259037acbd9f85dd087c0bf3ec7 (patch) | |
tree | 3d88732b67ad5eeb67854ed282f3b5027e6003c0 /setsysfont | |
parent | 50afc38da9b721939b2d66c4b61c8de742350e81 (diff) | |
download | initscripts-d43a4ad6e329b259037acbd9f85dd087c0bf3ec7.tar initscripts-d43a4ad6e329b259037acbd9f85dd087c0bf3ec7.tar.gz initscripts-d43a4ad6e329b259037acbd9f85dd087c0bf3ec7.tar.bz2 initscripts-d43a4ad6e329b259037acbd9f85dd087c0bf3ec7.tar.xz initscripts-d43a4ad6e329b259037acbd9f85dd087c0bf3ec7.zip |
correctly bracket systfontacm (#159706)
Diffstat (limited to 'setsysfont')
-rwxr-xr-x | setsysfont | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -30,7 +30,7 @@ elif [ -x /bin/setfont ]; then ARGS="-u $UNIMAP" fi if [ -n "$SYSFONTACM" ]; then - if [ ! -f /lib/kbd/consoletrans/$SYSFONTACM_to_uni.trans ]; then + if [ ! -f /lib/kbd/consoletrans/${SYSFONTACM}_to_uni.trans ]; then SYSFONTACM=`echo $SYSFONTACM | sed "s|iso0|8859-|g;s|iso|8859-|g"` fi ARGS="$ARGS -m $SYSFONTACM" |