From: Richard Purdie Date: Tue, 20 Jul 2021 08:23:32 +0000 (+0100) Subject: zstd: Include pzstd in the build X-Git-Tag: yocto-4.0~2822 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a2c85d3cac2a6c4cd8e961e915e9567ef2fc2c0b;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git 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. Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-extended/zstd/zstd_1.5.0.bb b/meta/recipes-extended/zstd/zstd_1.5.0.bb index 806edb63c39..3786058731d 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" do_compile () { oe_runmake ${PACKAGECONFIG_CONFARGS} ZSTD_LEGACY_SUPPORT=${ZSTD_LEGACY_SUPPORT} + oe_runmake ${PACKAGECONFIG_CONFARGS} ZSTD_LEGACY_SUPPORT=${ZSTD_LEGACY_SUPPORT} -C contrib/pzstd } do_install () { oe_runmake install 'DESTDIR=${D}' + oe_runmake install 'DESTDIR=${D}' PREFIX=${prefix} -C contrib/pzstd } BBCLASSEXTEND = "native nativesdk"