summaryrefslogtreecommitdiff
path: root/autoscripts/postinst-gconf
diff options
context:
space:
mode:
Diffstat (limited to 'autoscripts/postinst-gconf')
-rw-r--r--autoscripts/postinst-gconf4
1 files changed, 3 insertions, 1 deletions
diff --git a/autoscripts/postinst-gconf b/autoscripts/postinst-gconf
index c5ee87d5..f4a7c82d 100644
--- a/autoscripts/postinst-gconf
+++ b/autoscripts/postinst-gconf
@@ -1,5 +1,5 @@
if [ "$1" = "configure" ]; then
- SCHEMA_LOCATION=/etc/gconf/schemas
+ SCHEMA_LOCATION=/usr/share/gconf/schemas
SCHEMA_FILES="#SCHEMAS#"
for SCHEMA in $SCHEMA_FILES; do
if [ -e $SCHEMA_LOCATION/$SCHEMA ]; then
@@ -8,4 +8,6 @@ if [ "$1" = "configure" ]; then
--makefile-install-rule $SCHEMA_LOCATION/$SCHEMA > /dev/null
fi
done
+
+ kill -HUP `pidof gconfd-2` >/dev/null 2>&1 || true
fi