r13212 - in /desktop/unstable/gtk+2.0/debian: changelog dh_gtkmodules.in

lool at users.alioth.debian.org lool at users.alioth.debian.org
Sun Oct 21 16:41:34 UTC 2007


Author: lool
Date: Sun Oct 21 16:41:34 2007
New Revision: 13212

URL: http://svn.debian.org/wsvn/pkg-gnome/?sc=1&rev=13212
Log:
* Chech the exit status of close() in dh_gtkmodules; closes: #427654.

Modified:
    desktop/unstable/gtk+2.0/debian/changelog
    desktop/unstable/gtk+2.0/debian/dh_gtkmodules.in

Modified: desktop/unstable/gtk+2.0/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gtk%2B2.0/debian/changelog?rev=13212&op=diff
==============================================================================
--- desktop/unstable/gtk+2.0/debian/changelog (original)
+++ desktop/unstable/gtk+2.0/debian/changelog Sun Oct 21 16:41:34 2007
@@ -10,8 +10,9 @@
     - Drop patches 060_opening-display-by-env-error-message,
       065_gtk-filechooser-locale-time merged upstream.
     - Update relibtoolizing patch, 070_mandatory-relibtoolize.
-
- -- Loic Minier <lool at dooz.org>  Thu, 18 Oct 2007 16:40:27 +0200
+  * Chech the exit status of close() in dh_gtkmodules; closes: #427654.
+
+ -- Loic Minier <lool at dooz.org>  Sun, 21 Oct 2007 18:40:48 +0200
 
 gtk+2.0 (2.12.0-3) unstable; urgency=low
 

Modified: desktop/unstable/gtk+2.0/debian/dh_gtkmodules.in
URL: http://svn.debian.org/wsvn/pkg-gnome/desktop/unstable/gtk%2B2.0/debian/dh_gtkmodules.in?rev=13212&op=diff
==============================================================================
--- desktop/unstable/gtk+2.0/debian/dh_gtkmodules.in (original)
+++ desktop/unstable/gtk+2.0/debian/dh_gtkmodules.in Sun Oct 21 16:41:34 2007
@@ -112,7 +112,7 @@
                 chomp;
                 push @$modules_ref, $_;
             }
-            close FIND;
+            close FIND or die "Error while running find: $!";
         } elsif (-f $path or -l $path) {
             # if path is a file or symlink, simply add it to the list
             push @$modules_ref, $path;
@@ -170,7 +170,7 @@
     doit("chmod", 644, "$module_file");
     doit("chown", "0:0", "$module_file");
 
-    close QUERY;
+    close QUERY or die "Error while querying modules with $querymodules: $!";
 }
 
 foreach my $package (@{$dh{DOPACKAGES}}) {




More information about the pkg-gnome-commits mailing list