~ubuntu-branches/debian/squeeze/gconf/squeeze

« back to all changes in this revision

Viewing changes to debian/patches/01_defaults_path.patch

  • Committer: Bazaar Package Importer
  • Author(s): Josselin Mouette
  • Date: 2009-05-31 01:36:44 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20090531013644-svd9b2fgjlu3sqyg
Tags: 2.26.2-1
* New upstream release.
* Switch to quilt to manage patches; build-depend on quilt.
* 01_defaults_path.patch: new patch. Use gconf.xml.defaults for system 
  defaults instead of gconf.xml.system, since in Debian we don’t 
  pollute the original directory by applying schemas to it.
* 70_relibtoolize.patch: regenerate for the new version, without 
  autom4te.cache in it.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Index: GConf-2.26.2/defaults/gconf-defaults.c
 
2
===================================================================
 
3
--- GConf-2.26.2.orig/defaults/gconf-defaults.c 2009-05-31 01:34:03.455659987 +0200
 
4
+++ GConf-2.26.2/defaults/gconf-defaults.c      2009-05-31 01:34:36.507163240 +0200
 
5
@@ -507,7 +507,7 @@ do_copy (GConfDefaults          *mechani
 
6
        else {
 
7
                annotation_key = "org.gnome.gconf.defaults.set-system.prefix"; 
 
8
                default_action = "org.gnome.gconf.defaults.set-system";
 
9
-               dest_address = "xml:merged:" SYSGCONFDIR "/gconf.xml.system";
 
10
+               dest_address = "xml:merged:" SYSGCONFDIR "/gconf.xml.defaults";
 
11
        }
 
12
 
 
13
        for (i = 0; includes[i]; i++) {
 
14
Index: GConf-2.26.2/gconf/gconfd.c
 
15
===================================================================
 
16
--- GConf-2.26.2.orig/gconf/gconfd.c    2009-05-31 01:34:43.255158102 +0200
 
17
+++ GConf-2.26.2/gconf/gconfd.c 2009-05-31 01:35:09.147174042 +0200
 
18
@@ -655,7 +655,7 @@ system_bus_message_handler (DBusConnecti
 
19
 
 
20
          gconf_log (GCL_DEBUG, "System defaults changed.  Notifying.");
 
21
 
 
22
-         addresses.data = "xml:merged:/etc/gconf/gconf.xml.system";
 
23
+         addresses.data = "xml:merged:/etc/gconf/gconf.xml.defaults";
 
24
          addresses.next = NULL;
 
25
          system_sources = gconf_sources_new_from_addresses (&addresses, NULL);
 
26