diff options
author | Dave Reisner <d@falconindy.com> | 2011-06-09 04:37:07 +0200 |
---|---|---|
committer | Thomas Bächler <thomas@archlinux.org> | 2011-06-25 12:25:45 +0200 |
commit | 81e77426e554a61d85e1738af604359171a6062e (patch) | |
tree | 93cc1d2444fe29f466706ceda19d801978c99fd4 /hooks/consolefont | |
parent | 6dba57232914a1952dedea70a1dad38142ba7258 (diff) | |
download | mkinitcpio-81e77426e554a61d85e1738af604359171a6062e.tar.gz mkinitcpio-81e77426e554a61d85e1738af604359171a6062e.tar.xz |
init: declare PATH, remove absolute paths
We were never very consistent about this anyways.
Signed-off-by: Dave Reisner <d@falconindy.com>
Diffstat (limited to 'hooks/consolefont')
-rw-r--r-- | hooks/consolefont | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hooks/consolefont b/hooks/consolefont index 8e53eec..07cbd71 100644 --- a/hooks/consolefont +++ b/hooks/consolefont @@ -4,11 +4,11 @@ run_hook () { if [ -e /consolefont.psfu ]; then msg -n ":: Loading console font..." - /usr/sbin/setfont -C /dev/console /consolefont.psfu + setfont -C /dev/console /consolefont.psfu msg "done." elif [ -e /consolefont.psf ]; then msg -n ":: Loading console font..." - /usr/sbin/setfont -C /dev/console /consolefont.psf + setfont -C /dev/console /consolefont.psf msg "done." else msg "No consolefont found despite added hook." |