diff options
Diffstat (limited to 'source/x/x11/doinst.sh/font-bitstream-speedo')
-rw-r--r-- | source/x/x11/doinst.sh/font-bitstream-speedo | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/source/x/x11/doinst.sh/font-bitstream-speedo b/source/x/x11/doinst.sh/font-bitstream-speedo index 2cbbd2f1..f8501ec6 100644 --- a/source/x/x11/doinst.sh/font-bitstream-speedo +++ b/source/x/x11/doinst.sh/font-bitstream-speedo @@ -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/Speedo - mkfontscale . - mkfontdir . - ) + mkfontscale usr/share/fonts/Speedo 2> /dev/null + mkfontdir usr/share/fonts/Speedo 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 |