acd07f61e3
--HG-- extra : convert_revision : dfd737c502bea327054ecff5bc1fa152db6e2009
13 lines
166 B
Plaintext
13 lines
166 B
Plaintext
#
|
|
# This script builds fontconfig's fonts cache.
|
|
#
|
|
case "${ACTION}" in
|
|
pre)
|
|
;;
|
|
post)
|
|
echo "Building fonts cache... "
|
|
fc-cache -f >/dev/null
|
|
echo "done."
|
|
;;
|
|
esac
|