From: Adam Heath Date: Mon, 27 Oct 2003 16:58:22 +0000 (+0000) Subject: Add .#* to the default ignore filter. X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=35f2fff26e0dd56943d5f8525522e2925721d604;p=dpkg Add .#* to the default ignore filter. --- diff --git a/ChangeLog b/ChangeLog index 62490527..0f4732c2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Mon Oct 27 10:57:54 CST 2003 Adam Heath + + * scripts/dpkg-source.pl: Add .#* to the default ignore filter. + Mon Oct 27 09:49:29 CST 2003 Adam Heath * scripts/dpkg-scanpackages.pl: Add -u -a commands. diff --git a/debian/changelog b/debian/changelog index 0a5c2f71..ab19b01f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -9,6 +9,7 @@ dpkg (1.10.17) unstable; urgency=medium * Goswin Brederlow : Add -u in dpkg-scanpackages. Closes: #214123. Add -a command to dpkg-scanpackages. + * Add .#* to dpkg-source's default ignore filter. Closes: #217380. -- Wichert Akkerman UNRELEASED diff --git a/scripts/dpkg-source.pl b/scripts/dpkg-source.pl index f5dfdd74..70a6281d 100755 --- a/scripts/dpkg-source.pl +++ b/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";