summaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2021-07-20 09:23:32 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-07-20 18:59:18 +0100
commit6d1eec4512881d1f678f1e7c2a2bbde7ab35fd60 (patch)
tree302260e6b4e8073f36b8a2d011a76070eba47977 /meta/recipes-extended
parent8410987884fbf5f71a116d4e02763324aa7300f8 (diff)
downloadpoky-6d1eec4512881d1f678f1e7c2a2bbde7ab35fd60.tar.gz
zstd: Include pzstd in the build
We don't currently build the parallel version of zstd but we should. Add this to the build. It will then be used in buildtools-tarball. (From OE-Core rev: a2c85d3cac2a6c4cd8e961e915e9567ef2fc2c0b) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended')
-rw-r--r--meta/recipes-extended/zstd/zstd_1.5.0.bb2
1 files changed, 2 insertions, 0 deletions
diff --git a/meta/recipes-extended/zstd/zstd_1.5.0.bb b/meta/recipes-extended/zstd/zstd_1.5.0.bb
index 806edb63c3..3786058731 100644
--- a/meta/recipes-extended/zstd/zstd_1.5.0.bb
+++ b/meta/recipes-extended/zstd/zstd_1.5.0.bb
@@ -29,10 +29,12 @@ ZSTD_LEGACY_SUPPORT ??= "4"
29 29
30do_compile () { 30do_compile () {
31 oe_runmake ${PACKAGECONFIG_CONFARGS} ZSTD_LEGACY_SUPPORT=${ZSTD_LEGACY_SUPPORT} 31 oe_runmake ${PACKAGECONFIG_CONFARGS} ZSTD_LEGACY_SUPPORT=${ZSTD_LEGACY_SUPPORT}
32 oe_runmake ${PACKAGECONFIG_CONFARGS} ZSTD_LEGACY_SUPPORT=${ZSTD_LEGACY_SUPPORT} -C contrib/pzstd
32} 33}
33 34
34do_install () { 35do_install () {
35 oe_runmake install 'DESTDIR=${D}' 36 oe_runmake install 'DESTDIR=${D}'
37 oe_runmake install 'DESTDIR=${D}' PREFIX=${prefix} -C contrib/pzstd
36} 38}
37 39
38BBCLASSEXTEND = "native nativesdk" 40BBCLASSEXTEND = "native nativesdk"