summaryrefslogtreecommitdiff
path: root/Porting/cmpVERSION.pl
diff options
context:
space:
mode:
authorFlorian Ragwitz <rafl@debian.org>2011-06-14 13:29:11 +0200
committerFlorian Ragwitz <rafl@debian.org>2011-06-14 22:49:14 +0200
commit7ac818b24e0ec6f68348321cc96349db90c36cb9 (patch)
treec24b42c6196441678202d22e4885d77e9a519aa3 /Porting/cmpVERSION.pl
parenta5c70c4d9272459b07b8ddb9d839351659a0aea8 (diff)
downloadperl-7ac818b24e0ec6f68348321cc96349db90c36cb9.tar.gz
Ignore deletes when looking for changed versions
Diffstat (limited to 'Porting/cmpVERSION.pl')
-rwxr-xr-xPorting/cmpVERSION.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/Porting/cmpVERSION.pl b/Porting/cmpVERSION.pl
index d27781c5be..92cfec9e36 100755
--- a/Porting/cmpVERSION.pl
+++ b/Porting/cmpVERSION.pl
@@ -120,7 +120,7 @@ sub pm_file_from_xs {
my %module_diffs;
-foreach (`git --no-pager diff --name-only $tag_to_compare`) {
+foreach (`git --no-pager diff --name-only $tag_to_compare --diff-filter=ACMRTUXB`) {
chomp;
next unless m/^(.*)\//;
my $this_dir = $1;