diff mbox series

[v4,1/3] systemd-boot-native: move do_install() to after do_patch()

Message ID 20250206073013.1280187-1-mikko.rapeli@linaro.org
State Accepted, archived
Commit 0218a7a7dbf12ef817608881a3a17d9670c0778a
Headers show
Series [v4,1/3] systemd-boot-native: move do_install() to after do_patch() | expand

Commit Message

Mikko Rapeli Feb. 6, 2025, 7:30 a.m. UTC
The tasks were deleted and do_patch() was run after do_install()
which means that patches applied in SRC_URI were not in the
ukify.py binary installed. Moving do_install() to after do_patch()
fixes this.

Signed-off-by: Mikko Rapeli <mikko.rapeli@linaro.org>
---
 meta/recipes-core/systemd/systemd-boot-native_257.1.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/meta/recipes-core/systemd/systemd-boot-native_257.1.bb b/meta/recipes-core/systemd/systemd-boot-native_257.1.bb
index 58db408dcf..7b60d6b583 100644
--- a/meta/recipes-core/systemd/systemd-boot-native_257.1.bb
+++ b/meta/recipes-core/systemd/systemd-boot-native_257.1.bb
@@ -8,7 +8,7 @@  deltask do_compile
 do_install () {
        install -Dm 0755 ${S}/src/ukify/ukify.py ${D}${bindir}/ukify
 }
-addtask install after do_unpack
+addtask install after do_patch
 
 PACKAGES = "${PN}"