1
0
This repository has been archived on 2025-06-16. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
openwrt_archive/Xorg/lib/gtk2/files/gdk-pixbuf-query-loaders.init
Jo-Philipp Wich 6af04d49d1 [packages_10.03.2] merge r30006
SVN-Revision: 30017
2012-02-03 15:58:07 +00:00

13 lines
234 B
Bash
Executable File

#!/bin/sh /etc/rc.common
# Copyright (C) 2007 OpenWrt.org
START=99
FILE=/etc/gtk-2.0/gdk-pixbuf.loaders
start() {
if [ ! -e ${FILE} ]; then
mkdir -p $(dirname ${FILE})
gdk-pixbuf-query-loaders > ${FILE}
fi
}