]> git.pld-linux.org Git - projects/rc-scripts.git/commitdiff
Don't depend on bin paths.
authorArkadiusz Miśkiewicz <arekm@maven.pl>
Tue, 18 May 2004 22:27:46 +0000 (22:27 +0000)
committerArkadiusz Miśkiewicz <arekm@maven.pl>
Tue, 18 May 2004 22:27:46 +0000 (22:27 +0000)
svn-id: @4083

setsysfont

index 6075158da2e1f058ed3515d5d04b5896c7c563dd..206812372693332101d0671c0121452d2dc4615c 100755 (executable)
@@ -25,11 +25,11 @@ if [ -x /usr/bin/consolechars -o -x /bin/consolechars ]; then
        fi
 
 
-elif [ -x /usr/bin/setfont ]; then
+elif [ -x /usr/bin/setfont -o -x /bin/setfont ]; then
        if [ -n "$SYSFONT" ]; then
-               /usr/bin/setfont $SYSFONT
+               setfont $SYSFONT
        elif [ -n "$CONSOLEFONT" ]; then
-               /usr/bin/setfont $CONSOLEFONT
+               setfont $CONSOLEFONT
        fi
 else
        echo "can't set font"
This page took 0.140569 seconds and 4 git commands to generate.