Blame 0035-git2spec.pl-make-rename-diffs.patch

Harald Hoyer 428fde
From aaced3f9909dddc0ff858634711c3e97b80b09ec Mon Sep 17 00:00:00 2001
Harald Hoyer 428fde
From: Harald Hoyer <harald@redhat.com>
Harald Hoyer 428fde
Date: Fri, 29 Jul 2011 11:12:07 +0200
Harald Hoyer 428fde
Subject: [PATCH] git2spec.pl: make rename diffs
Harald Hoyer 428fde
Harald Hoyer 428fde
---
Harald Hoyer 428fde
 git2spec.pl |    2 +-
Harald Hoyer 428fde
 1 files changed, 1 insertions(+), 1 deletions(-)
Harald Hoyer 428fde
Harald Hoyer 428fde
diff --git a/git2spec.pl b/git2spec.pl
Harald Hoyer 428fde
index 6e0bff8..8525ad2 100755
Harald Hoyer 428fde
--- a/git2spec.pl
Harald Hoyer 428fde
+++ b/git2spec.pl
Harald Hoyer 428fde
@@ -19,7 +19,7 @@ sub last_tag {
Harald Hoyer 428fde
 sub create_patches {
Harald Hoyer 428fde
     my $tag=shift;
Harald Hoyer 428fde
     my $num=0;
Harald Hoyer 428fde
-    open( GIT, 'git format-patch -M -N --no-signature '.$tag.' |');
Harald Hoyer 428fde
+    open( GIT, 'git format-patch --no-renames -N --no-signature '.$tag.' |');
Harald Hoyer 428fde
     @lines=<GIT>;
Harald Hoyer 428fde
     close GIT;         # be done
Harald Hoyer 428fde
     return @lines;