a08d005693
--HG-- branch : gnome3
11 lines
157 B
Plaintext
11 lines
157 B
Plaintext
#
|
|
# This script builds fontconfig's fonts cache.
|
|
#
|
|
case "${ACTION}" in
|
|
post)
|
|
echo "Building fonts cache... "
|
|
fc-cache -f >/dev/null
|
|
echo "done."
|
|
;;
|
|
esac
|