Upgraded xorg/freeglut to 3.4.0 Upgraded xorg/libraw to 0.21.1 Upgraded xorg/libx11 Removed unnecessary shebang in xorg/xorg-fonts doinst.sh file
10 lines
296 B
Bash
10 lines
296 B
Bash
# Update the X font indexes:
|
|
if [ -x /bin/mkfontdir ]; then
|
|
mkfontscale share/fonts/TTF 2> /dev/null
|
|
mkfontdir share/fonts/TTF 2> /dev/null
|
|
mkfontscale share/fonts/OTF 2> /dev/null
|
|
mkfontdir share/fonts/OTF 2> /dev/null
|
|
fi
|
|
if [ -x /bin/fc-cache ]; then
|
|
/bin/fc-cache -f 2> /dev/null
|
|
fi
|