]> git.pld-linux.org Git - packages/GConf2.git/blob - GConf2-reload.patch
3293e0690b53422d4ecc1567ad41ca08557b1355
[packages/GConf2.git] / GConf2-reload.patch
1 Index: gconf/gconf/gconftool.c
2 ===================================================================
3 RCS file: /cvs/gnome/gconf/gconf/gconftool.c,v
4 retrieving revision 1.102
5 diff -d -u -p -U10 -r1.102 gconftool.c
6 --- gconf/gconf/gconftool.c     3 Jan 2006 17:05:28 -0000       1.102
7 +++ gconf/gconf/gconftool.c     1 Feb 2006 18:34:36 -0000
8 @@ -881,29 +881,33 @@ main (int argc, char** argv)
9    if (makefile_install_mode)
10      {
11        gint retval;
12  
13        umask (022);
14        retval = do_makefile_install (conf, args, FALSE);
15        
16        gconf_engine_unref (conf);
17  
18 +      g_spawn_command_line_sync ("/usr/killall -q -TERM " GCONF_SERVERDIR "/" GCONFD, NULL, NULL, NULL, NULL);
19 +
20        return retval;
21      }
22  
23    if (makefile_uninstall_mode)
24      {
25        gint retval;
26  
27        umask (022);
28        retval = do_makefile_install (conf, args, TRUE);
29        
30        gconf_engine_unref (conf);
31 +
32 +      g_spawn_command_line_sync ("/usr/killall -q -TERM " GCONF_SERVERDIR "/" GCONFD, NULL, NULL, NULL, NULL);
33  
34        return retval;
35      }
36  
37    if (break_key_mode)
38      {
39        gint retval = do_break_key(conf, args);
40  
41        gconf_engine_unref(conf);
This page took 0.030853 seconds and 2 git commands to generate.