fontpackages/reconfigure-fonts-cjk.sh
2013-10-04 09:00:11 +00:00

12 lines
324 B
Bash

adobecifontconfig=/usr/sbin/acroread-cidfont-config
ghostscriptcjkconfig=/usr/sbin/ghostscript-cjk-config
runflag=/var/run/fontpackages/reconfigure-fonts-cjk
if [ -e $runflag ]; then
if [ -x $adobecidfontconfig ]; then
$adobecidfontconfig
fi
if [ -x $ghostscriptcjkconfig ]; then
$ghostscriptcjkconfig
fi
fi