blob: 4b16502e4a43b994f3083aea6affa746ff908528 (
plain)
1
2
3
4
5
6
7
|
#!/bin/sh
for i in metacity.schemas; do
echo "Installing GConf2 schema $i."
GCONF_CONFIG_SOURCE=`/usr/bin/gconftool-2 --get-default-source` \
/usr/bin/gconftool-2 --makefile-install-rule /etc/gconf/schemas/$i >/dev/null
done
|