blob: 17a57f65c61ff66cf203355076372c3b2fc52849 (
plain)
1
2
3
4
5
6
7
8
9
10
|
post_install() {
post_upgrade $1
}
post_upgrade() {
echo -n "Rebuilding 32-bit fontconfig cache..."
# a full forced directory scan is required here
SOURCE_DATE_EPOCH=$(date +%s) fc-cache -rs
echo " done."
}
|