summaryrefslogtreecommitdiffstats
path: root/xorg/lib/pango/files/pango-querymodules.init
blob: f7f56e5ca4ed8effc1ecbcb375b4a80b66e0bd43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh /etc/rc.common
# Copyright (C) 2007 OpenWrt.org

START=99
FILE=/etc/pango/pango.modules

start() {
    if [ ! -e ${FILE} ]; then
        mkdir -p $(dirname ${FILE})
        pango-querymodules > ${FILE}
    fi
}