summaryrefslogtreecommitdiffstats
path: root/remove-binary-diff.pl
diff options
context:
space:
mode:
authorLaura Abbott <labbott@redhat.com>2016-10-31 06:27:30 -0700
committerLaura Abbott <labbott@redhat.com>2016-10-31 06:27:33 -0700
commitb9e51f8ce96df1695d70d4c015e3e92a379b0b5c (patch)
tree4f978db13708a6c617df6e10edfae4429742e92c /remove-binary-diff.pl
parent7f483c3694ac4b3c0c7c8f79486f235b42dfb275 (diff)
downloadkernel-b9e51f8ce96df1695d70d4c015e3e92a379b0b5c.tar.gz
kernel-b9e51f8ce96df1695d70d4c015e3e92a379b0b5c.tar.xz
kernel-b9e51f8ce96df1695d70d4c015e3e92a379b0b5c.zip
Linux v4.9-rc3
- Update remove-binary-diff.pl to remove git binary patches as well. Git binary patches can be applied but the spec file needs to be updated to support this.
Diffstat (limited to 'remove-binary-diff.pl')
-rwxr-xr-xremove-binary-diff.pl2
1 files changed, 2 insertions, 0 deletions
diff --git a/remove-binary-diff.pl b/remove-binary-diff.pl
index 520ac5d73..9048490ca 100755
--- a/remove-binary-diff.pl
+++ b/remove-binary-diff.pl
@@ -21,6 +21,8 @@ while(my $row = <>) {
@current_patch = ();
} elsif ($row =~ /Binary files (.)* differ$/) {
$is_binary = 1;
+ } elsif ($row =~ /GIT binary patch/) {
+ $is_binary = 1;
}
push (@current_patch, $row);
}