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.
This commit is contained in:
parent
7f483c3694
commit
b9e51f8ce9
@ -67,9 +67,9 @@ Summary: The Linux kernel
|
||||
# The next upstream release sublevel (base_sublevel+1)
|
||||
%define upstream_sublevel %(echo $((%{base_sublevel} + 1)))
|
||||
# The rc snapshot level
|
||||
%global rcrev 2
|
||||
%global rcrev 3
|
||||
# The git snapshot level
|
||||
%define gitrev 2
|
||||
%define gitrev 0
|
||||
# Set rpm version accordingly
|
||||
%define rpmversion 4.%{upstream_sublevel}.0
|
||||
%endif
|
||||
@ -2149,6 +2149,9 @@ fi
|
||||
#
|
||||
#
|
||||
%changelog
|
||||
* Mon Oct 31 2016 Laura Abbott <labbott@redhat.com> - 4.9.0-0.rc3.git0.1
|
||||
- Linux v4.9-rc3
|
||||
|
||||
* Mon Oct 31 2016 Laura Abbott <labbott@redhat.com>
|
||||
- Disable debugging options.
|
||||
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user