diff options
Diffstat (limited to 'source/x/x11/doinst.sh/font-bh-75dpi')
-rw-r--r-- | source/x/x11/doinst.sh/font-bh-75dpi | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/source/x/x11/doinst.sh/font-bh-75dpi b/source/x/x11/doinst.sh/font-bh-75dpi index 94bb53e84..2e1e36a79 100644 --- a/source/x/x11/doinst.sh/font-bh-75dpi +++ b/source/x/x11/doinst.sh/font-bh-75dpi @@ -1,11 +1,9 @@ #!/bin/sh # Update the X font indexes: if [ -x /usr/bin/mkfontdir -o -x /usr/X11R6/bin/mkfontdir ]; then - ( cd /usr/share/fonts/75dpi - mkfontscale . - mkfontdir . - ) + mkfontscale usr/share/fonts/75dpi 2> /dev/null + mkfontdir usr/share/fonts/75dpi 2> /dev/null fi if [ -x /usr/bin/fc-cache ]; then - /usr/bin/fc-cache -f + /usr/bin/fc-cache -f 2> /dev/null fi |