fontconfig/fc-cache
Akira TAGOH 61e3ec408b Allow installing 32/64 bit version of fc-cache at the same time. (#1474257)
Add fc-cache script to invoke both version of fc-cache if available.
2017-07-24 18:18:44 +09:00

5 lines
122 B
Bash
Executable File

#! /bin/sh
[ -x /usr/bin/fc-cache-32 ] && /usr/bin/fc-cache-32 $@
[ -x /usr/bin/fc-cache-64 ] && /usr/bin/fc-cache-64 $@