most of the Xft/fontconfig problems people are experiencing. Note that in this version, font caches do not have to exist for Xft applications to function properly. PR: 50482
9 lines
188 B
Bash
9 lines
188 B
Bash
#!/bin/sh
|
|
|
|
PATH=/bin:/usr/bin:/sbin:/usr/sbin:%%PREFIX%%/bin
|
|
export PATH
|
|
|
|
if [ "$2" = "POST-INSTALL" ]; then
|
|
echo "Running fc-cache to build fontconfig cache..."
|
|
fc-cache -f -v
|
|
fi
|