From: Alexander Kanavin Date: Tue, 6 Feb 2024 09:13:47 +0000 (+0100) Subject: file: enable additional internal compressor support X-Git-Tag: uninative-4.4~220 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d740530daf4ad4e67a323bf39e968e930f208543;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git file: enable additional internal compressor support This is an extension of https://git.yoctoproject.org/poky/commit/meta/recipes-devtools/file?h=master&id=52a31bd5ba90713af82822047c3813afc31421f8 and the rationale is the same. The issue was exposed by recent ptest support in xz, which packages .lz files into the xz-ptest package which resulted in reproducibility fails: http://autobuilder.yocto.io/pub/repro-fail/oe-reproducible-20240203-fdpg888c/packages/diff-html/ Signed-off-by: Alexander Kanavin Signed-off-by: Richard Purdie --- diff --git a/meta/recipes-devtools/file/file_5.45.bb b/meta/recipes-devtools/file/file_5.45.bb index 8477668658d..fa8dc576dcc 100644 --- a/meta/recipes-devtools/file/file_5.45.bb +++ b/meta/recipes-devtools/file/file_5.45.bb @@ -20,12 +20,12 @@ S = "${WORKDIR}/git" inherit autotools update-alternatives -PACKAGECONFIG ??= "bz2 lzma zlib" +PACKAGECONFIG ??= "bz2 lzma zlib zstdlib lzlib" PACKAGECONFIG[bz2] = "--enable-bzlib, --disable-bzlib, bzip2" PACKAGECONFIG[lzma] = "--enable-xzlib, --disable-xzlib, xz" PACKAGECONFIG[zlib] = "--enable-zlib, --disable-zlib, zlib" PACKAGECONFIG[zstdlib] = "--enable-zstdlib, --disable-zstdlib, zstd" -PACKAGECONFIG[lzlib] = "--enable-lzlib, --disable-lzlib, lzip" +PACKAGECONFIG[lzlib] = "--enable-lzlib, --disable-lzlib, lzlib" PACKAGECONFIG[seccomp] = "--enable-libseccomp, --disable-libseccomp, libseccomp" ALTERNATIVE:${PN} = "file"