[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

lintian: r690 - in trunk: debian lib



Author: rra
Date: 2006-06-27 02:45:45 +0200 (Tue, 27 Jun 2006)
New Revision: 690

Modified:
   trunk/debian/changelog
   trunk/lib/Util.pm
Log:
* lib/Util.pm:
  + [RA] Pass the --wildcards option to tar, now required by a change in
    the default tar semantics.  (Closes: #375246)

Modified: trunk/debian/changelog
===================================================================
--- trunk/debian/changelog	2006-06-27 00:33:31 UTC (rev 689)
+++ trunk/debian/changelog	2006-06-27 00:45:45 UTC (rev 690)
@@ -45,8 +45,12 @@
     + [RA] Don't consider templates.in to be a stray translated template
       file.  Thanks, Thomas Huriaux.  (Closes: #367534)
 
- -- Russ Allbery <rra@debian.org>  Sat, 24 Jun 2006 21:25:29 -0700
+  * lib/Util.pm:
+    + [RA] Pass the --wildcards option to tar, now required by a change in
+      the default tar semantics.  (Closes: #375246)
 
+ -- Russ Allbery <rra@debian.org>  Mon, 26 Jun 2006 17:45:25 -0700
+
 lintian (1.23.21) unstable; urgency=low
 
   * checks/menus:

Modified: trunk/lib/Util.pm
===================================================================
--- trunk/lib/Util.pm	2006-06-27 00:33:31 UTC (rev 689)
+++ trunk/lib/Util.pm	2006-06-27 00:45:45 UTC (rev 690)
@@ -139,7 +139,7 @@
     my $CONTROL = FileHandle->new;
     pipeline_open($CONTROL,
 		  (sub { exec 'ar', 'p', $file, 'control.tar.gz' }),
-		  (sub { exec 'tar', 'xfzO', '-', '*control' }))
+		  (sub { exec 'tar', '--wildcards', '-xzO', '-f', '-', '*control' }))
 	or fail("cannot fork to unpack $file: $!\n");
     my @data = parse_dpkg_control($CONTROL);
     close($CONTROL) or fail("broken input pipe for unpacking $file: $!");



Reply to: