summaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorPascal Bach <pascal.bach@siemens.com>2022-07-12 11:24:39 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-07-12 23:56:10 +0100
commit6feb842fc27bd997e2a718defdcb76814db80436 (patch)
tree466ed94143967f1a8e948c274cf01692b6069bd7 /meta/classes
parent4a9cb3b33ec4cde64c22d090cf69a0cb41c0891e (diff)
downloadpoky-6feb842fc27bd997e2a718defdcb76814db80436.tar.gz
bin_package: install into base_prefix
This makes the bin_package.bbclass work properly with the native class. (From OE-Core rev: ad330b6d4b6e2ba051b5c6c437e07a183831f757) Signed-off-by: Pascal Bach <pascal.bach@siemens.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/bin_package.bbclass3
1 files changed, 2 insertions, 1 deletions
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 () {
30 bbfatal bin_package has nothing to install. Be sure the SRC_URI unpacks into S. 30 bbfatal bin_package has nothing to install. Be sure the SRC_URI unpacks into S.
31 fi 31 fi
32 cd ${S} 32 cd ${S}
33 install -d ${D}${base_prefix}
33 tar --no-same-owner --exclude='./patches' --exclude='./.pc' -cpf - . \ 34 tar --no-same-owner --exclude='./patches' --exclude='./.pc' -cpf - . \
34 | tar --no-same-owner -xpf - -C ${D} 35 | tar --no-same-owner -xpf - -C ${D}${base_prefix}
35} 36}
36 37
37FILES:${PN} = "/" 38FILES:${PN} = "/"