Update pango to 1.20.5 and add init script which calls pango-querymodules on the

target system.


git-svn-id: svn://svn.openwrt.org/openwrt/packages@12474 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
lars
2008-09-01 23:23:46 +00:00
parent 61ff59ce81
commit 6f67e425a0
2 changed files with 28 additions and 15 deletions

View File

@ -0,0 +1,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
}