Browse Source

Add .#* to the default ignore filter.

Adam Heath 23 years ago
parent
commit
35f2fff26e
3 changed files with 6 additions and 1 deletions
  1. 4 0
      ChangeLog
  2. 1 0
      debian/changelog
  3. 1 1
      scripts/dpkg-source.pl

+ 4 - 0
ChangeLog

@@ -1,3 +1,7 @@
+Mon Oct 27 10:57:54 CST 2003 Adam Heath <doogie@debian.org>
+
+  * scripts/dpkg-source.pl: Add .#* to the default ignore filter.
+
 Mon Oct 27 09:49:29 CST 2003 Adam Heath <doogie@debian.org>
 
   * scripts/dpkg-scanpackages.pl: Add -u -a<arch> commands.

+ 1 - 0
debian/changelog

@@ -9,6 +9,7 @@ dpkg (1.10.17) unstable; urgency=medium
   * Goswin Brederlow <brederlo@informatik.uni-tuebingen.de>:
     Add -u in dpkg-scanpackages.  Closes: #214123.
     Add -a<arch> command to dpkg-scanpackages.
+  * Add .#* to dpkg-source's default ignore filter.  Closes: #217380.
 
  -- Wichert Akkerman <wakkerma@debian.org>  UNRELEASED
 

+ 1 - 1
scripts/dpkg-source.pl

@@ -8,7 +8,7 @@ my %dirincluded;
 my %notfileobject;
 my $fn;
 
-$diff_ignore_default_regexp = '(?:^|/).*~$|(?:^|/)\..*\.swp|DEADJOE|\.cvsignore|(?:/(?:CVS|RCS|\.deps|\{arch\}|\.arch-ids|\.svn))(?:$|/.*$)';
+$diff_ignore_default_regexp = '(?:^|/)\.#.*$|(?:^|/).*~$|(?:^|/)\..*\.swp|DEADJOE|\.cvsignore|(?:/(?:CVS|RCS|\.deps|\{arch\}|\.arch-ids|\.svn))(?:$|/.*$)';
 
 $sourcestyle = 'X';
 $dscformat = "1.0";