]> git.donarmstrong.com Git - debhelper.git/blob - autoscripts/postinst-xfonts
ae9996330dc80ac3e889cb8d3c002ec56d9fe530
[debhelper.git] / autoscripts / postinst-xfonts
1 if [ "$1" = "configure" ]; then
2         fontdirs="#FONTDIRS#"
3         updatecmds="#UPDATECMDS#"
4         
5         for dir in $fontdirs; do
6                 for currentcmd in $updatecmds; do
7                         $currentcmd /usr/lib/X11/fonts/$dir
8                 done
9         done
10 fi