r14029 - in /desktop/unstable/gconf/debian: changelog gconf-schemas

mbanck at users.alioth.debian.org mbanck at users.alioth.debian.org
Fri Jan 4 17:34:08 UTC 2008


Author: mbanck
Date: Fri Jan  4 17:34:08 2008
New Revision: 14029

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=14029
Log:
  * gconf-schemas: Work around hangs on kfreebsd/hurd. Thanks Samuel
    Thibault.

Modified:
    desktop/unstable/gconf/debian/changelog
    desktop/unstable/gconf/debian/gconf-schemas

Modified: desktop/unstable/gconf/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gconf/debian/changelog?rev=14029&op=diff
==============================================================================
--- desktop/unstable/gconf/debian/changelog (original)
+++ desktop/unstable/gconf/debian/changelog Fri Jan  4 17:34:08 2008
@@ -1,3 +1,11 @@
+gconf (2.20.1-3) UNRELEASED; urgency=low
+
+  [ Michael Banck ]
+  * gconf-schemas: Work around hangs on kfreebsd/hurd. Thanks Samuel 
+    Thibault.
+
+ -- Michael Banck <mbanck at debian.org>  Fri, 04 Jan 2008 18:31:39 +0100
+
 gconf (2.20.1-2) unstable; urgency=low
 
   * Add manual page for gconf-schemas. Closes: #449434. Thanks Patrick

Modified: desktop/unstable/gconf/debian/gconf-schemas
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gconf/debian/gconf-schemas?rev=14029&op=diff
==============================================================================
--- desktop/unstable/gconf/debian/gconf-schemas (original)
+++ desktop/unstable/gconf/debian/gconf-schemas Fri Jan  4 17:34:08 2008
@@ -61,8 +61,10 @@
 else:
   arg='--makefile-uninstall-rule'
 
+fd = os.open("/dev/null",os.O_WRONLY)
 save_stdout=os.dup(1)
-os.close(1)
+os.dup2(fd,1)
+os.close(fd)
 res=os.spawnvpe(os.P_WAIT,'gconftool-2',['gconftool-2',arg]+schemas,env)
 os.dup2(save_stdout,1)
 os.close(save_stdout)




More information about the pkg-gnome-commits mailing list