summaryrefslogtreecommitdiffstats
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:54:22 +0100
commitad330b6d4b6e2ba051b5c6c437e07a183831f757 (patch)
treed79d28fabaf42c5334275f98f1d6b709d923c66c
parent3f2a812ade42ece0bb59b2d303125a91b29936dd (diff)
downloadopenembedded-core-contrib-ad330b6d4b6e2ba051b5c6c437e07a183831f757.tar.gz
bin_package: install into base_prefix
This makes the bin_package.bbclass work properly with the native class. Signed-off-by: Pascal Bach <pascal.bach@siemens.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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 () {
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} = "/"