mirror of
https://github.com/void-linux/void-packages.git
synced 2025-04-26 11:10:31 +02:00
9 lines
245 B
Bash
9 lines
245 B
Bash
#
|
|
# This helpers runs fc-cache after fontconfig has been installed,
|
|
# and update its list of fonts.
|
|
#
|
|
|
|
if [ -x $XBPS_MASTERDIR/bin/fc-cache ]; then
|
|
$XBPS_MASTERDIR/bin/fc-cache -f
|
|
[ "$?" -eq 0 ] && echo "=> Updated fontconfig fonts cache."
|
|
fi
|