Do not build efi stub on i686 anymore

to avoid debuginfo generation issues like:

```
debugedit: Failed to update file: invalid section entry size
```

Resolves: RHEL-182998
This commit is contained in:
Jan Macku 2026-06-08 13:07:19 +02:00
parent a94e596d19
commit 9525fe0ba5

View File

@ -48,7 +48,7 @@ Url: https://systemd.io
# Allow users to specify the version and release when building the rpm by
# setting the %%version_override and %%release_override macros.
Version: %{?version_override}%{!?version_override:257}
Release: 26%{?dist}
Release: 27%{?dist}
%global stable %(c="%version"; [ "$c" = "${c#*.*}" ]; echo $?)
@ -796,7 +796,7 @@ Patch0682: 0682-fstab-generator-fix-spurious-quota-warning-for-xfs.patch
# Downstream-only patches (90009999)
%endif
%ifarch %{ix86} x86_64 aarch64 riscv64
%ifarch x86_64 aarch64 riscv64
%global want_bootloader 1
%endif
@ -1743,6 +1743,9 @@ rm -f .file-list-*
rm -f %{name}.lang
%changelog
* Mon Jun 15 2026 systemd maintenance team <systemd-maint@redhat.com> - 257-27
- Do not build efi stub on i686 anymore (RHEL-176073)
* Mon Jun 08 2026 systemd maintenance team <systemd-maint@redhat.com> - 257-26
- fstab-generator: fix spurious quota warning for xfs (RHEL-169955)