EL10 warns that the use of %patchN in RPM specs is deprecated and that %patch N or %patch -P N.
These packages use it:
The alternate syntax doesn't work in OL8 so we'll need conditionals. Yay.
%if 0%{?el8}%{?ol8}
%patch0 -p1
%else
%patch 0 -p1
%endif
Unibuild does some automagic things with patches. Make sure it doesn't depend on the %patchN syntax.
Check the rest of the project as well.
EL10 warns that the use of
%patchNin RPM specs is deprecated and that%patch Nor%patch -P N.These packages use it:
The alternate syntax doesn't work in OL8 so we'll need conditionals. Yay.
Unibuild does some automagic things with patches. Make sure it doesn't depend on the
%patchNsyntax.Check the rest of the project as well.