From 0218a7a7dbf12ef817608881a3a17d9670c0778a Mon Sep 17 00:00:00 2001 From: Mikko Rapeli Date: Thu, 6 Feb 2025 09:30:11 +0200 Subject: [PATCH] systemd-boot-native: move do_install() to after do_patch() 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 Signed-off-by: Richard Purdie --- meta/recipes-core/systemd/systemd-boot-native_257.1.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 58db408dcfe..7b60d6b583a 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}" -- 2.47.3