Fix build error

Source files should not be executable, to correct this problem we did this fix.
More about: https://github.com/krisprice/ipnet/issues/59

resolves: #https://issues.redhat.com/browse/RHEL-60790
This commit is contained in:
Yasmin Valim 2024-10-01 15:04:38 -03:00
parent a0d572b6f4
commit 0938ed593f
No known key found for this signature in database
GPG Key ID: 22BBB0ECEB43330C

View File

@ -105,6 +105,8 @@ to run in the initramfs on boot.
%if 0%{?rhel} && !0%{?eln} %if 0%{?rhel} && !0%{?eln}
tar xvf %{SOURCE1} tar xvf %{SOURCE1}
%cargo_prep -v vendor %cargo_prep -v vendor
# avoid brp-mangle-shebangs error from sources with executable bit
chmod -x vendor/ipnet/src/*.rs
%else %else
%cargo_prep %cargo_prep
%endif %endif