The following commit has been merged in the master branch:
commit 2328cd3cd60548ea0ef42389e347122dd4fcf4b1
Author: Raphael Geissert <[email protected]>
Date:   Tue Feb 14 23:17:05 2012 +0000

    debdiff: remove extraneous quoting of --exclude parameters

diff --git a/debian/changelog b/debian/changelog
index b1e94af..c520a30 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -26,7 +26,8 @@ devscripts (2.11.4) UNRELEASED; urgency=low
   * debdiff:
     + Remove undocumented feature treating extensionless files as if
       they were packages (Closes: #659559)
-    + Add missing chdir for dpkg-source
+    + Add missing chdir for dpkg-source and remove extraneous quoting
+      of --exclude parameters.
 
  -- Benjamin Drung <[email protected]>  Wed, 15 Feb 2012 15:56:19 +0100
 
diff --git a/scripts/debdiff.pl b/scripts/debdiff.pl
index 8626dce..3dd56f9 100755
--- a/scripts/debdiff.pl
+++ b/scripts/debdiff.pl
@@ -593,7 +593,7 @@ elsif ($type eq 'dsc') {
 
        my @command = ("diff", "-Nru", @diff_opts);
        for my $exclude (@excludes) {
-           push @command, ("--exclude", "'$exclude'");
+           push @command, ("--exclude", $exclude);
        }
        push @command, ("$dir1/$sdir1", "$dir2/$sdir2");
 

-- 
Git repository for devscripts


-- 
To unsubscribe, send mail to [email protected].

Reply via email to