diff options
author | Laura Abbott <labbott@redhat.com> | 2016-10-31 06:27:30 -0700 |
---|---|---|
committer | Laura Abbott <labbott@redhat.com> | 2016-10-31 06:27:33 -0700 |
commit | b9e51f8ce96df1695d70d4c015e3e92a379b0b5c (patch) | |
tree | 4f978db13708a6c617df6e10edfae4429742e92c /remove-binary-diff.pl | |
parent | 7f483c3694ac4b3c0c7c8f79486f235b42dfb275 (diff) | |
download | kernel-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-x | remove-binary-diff.pl | 2 |
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); } |