| Message ID | 20260624141706.2164567-9-JPEWhacker@gmail.com |
|---|---|
| State | Under Review |
| Headers | show |
| Series | Implement SPDX for deploy tasks | expand |
diff --git a/meta/recipes-core/systemd/systemd-boot_259.5.bb b/meta/recipes-core/systemd/systemd-boot_259.5.bb index c887835806..787d4652a2 100644 --- a/meta/recipes-core/systemd/systemd-boot_259.5.bb +++ b/meta/recipes-core/systemd/systemd-boot_259.5.bb @@ -8,6 +8,8 @@ DEPENDS = "libcap util-linux gperf-native python3-jinja2-native python3-pyelftoo inherit meson pkgconfig gettext inherit deploy +PACKAGE_ARCH = "${MACHINE_ARCH}" + LDFLAGS =+ "${@ " ".join(d.getVar('LD').split()[1:])} " EFI_LD = "bfd"
Machines can change EFI_PROVIDER which changes the way systemd-boot is built, meaning two machine may not build it the same way. As such, the arch should be MACHINE_ARCH. Signed-off-by: Joshua Watt <JPEWhacker@gmail.com> --- meta/recipes-core/systemd/systemd-boot_259.5.bb | 2 ++ 1 file changed, 2 insertions(+)