From dd1fac1e1150b85dbf9f7c112eaff91f70ebf813 Mon Sep 17 00:00:00 2001 From: Pascal Bach Date: Tue, 12 Jul 2022 11:24:39 +0200 Subject: [PATCH] bin_package: install into base_prefix This makes the bin_package.bbclass work properly with the native class. (From OE-Core rev: 58029ca7beb6cda1c7a97f2f2cfae64888587cd6) Signed-off-by: Pascal Bach Signed-off-by: Richard Purdie (cherry picked from commit ad330b6d4b6e2ba051b5c6c437e07a183831f757) Signed-off-by: Steve Sakoman Signed-off-by: Richard Purdie --- meta/classes/bin_package.bbclass | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/meta/classes/bin_package.bbclass b/meta/classes/bin_package.bbclass index c3aca20443..f0407e1329 100644 --- a/meta/classes/bin_package.bbclass +++ b/meta/classes/bin_package.bbclass @@ -30,8 +30,9 @@ bin_package_do_install () { bbfatal bin_package has nothing to install. Be sure the SRC_URI unpacks into S. fi cd ${S} + install -d ${D}${base_prefix} tar --no-same-owner --exclude='./patches' --exclude='./.pc' -cpf - . \ - | tar --no-same-owner -xpf - -C ${D} + | tar --no-same-owner -xpf - -C ${D}${base_prefix} } FILES:${PN} = "/"