blob: f8d62e51dac2860a3ddc08f3e7820b3e0076fa63 (
plain)
1
2
3
4
5
6
7
8
9
10
|
schema_install() {
SCHEMA="$1"
GCONF_CONFIG_SOURCE="xml::etc/gconf/gconf.xml.defaults" \
chroot . gconftool-2 --makefile-install-rule \
/etc/gconf/schemas/$SCHEMA \
1>/dev/null
}
schema_install metacity.schemas
|