diff options
author | Ross Burton <ross@burtonini.com> | 2021-05-12 16:53:16 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-05-13 11:34:14 +0100 |
commit | 0fc0804e4b6df74aa160cab75e9da944013b0db3 (patch) | |
tree | 1d250710639d7be689e52baec5f459a53c9212bc /meta | |
parent | 1e122267fd94ca17fde4ad459ad056a46fc7a9c3 (diff) | |
download | poky-0fc0804e4b6df74aa160cab75e9da944013b0db3.tar.gz |
libarchive: disable redundant libxml2 PACKAGECONFIG
An XML parser (either libxml2, or expat) is only needed by libarchive to
read/write XAR archives. However, these also need OpenSSL enabled which
by default it is not, so XAR files were disabled and libxml2 was a build
dependency for no reason.
As XAR archives are mainly used on macOS, we can remove libxml2.
(From OE-Core rev: 363f1ee30b0e6d222943aaed8dce37a4a441a86d)
Signed-off-by: Ross Burton <ross.burton@arm.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-extended/libarchive/libarchive_3.5.1.bb | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/meta/recipes-extended/libarchive/libarchive_3.5.1.bb b/meta/recipes-extended/libarchive/libarchive_3.5.1.bb index 1387b69066..c9e30f468f 100644 --- a/meta/recipes-extended/libarchive/libarchive_3.5.1.bb +++ b/meta/recipes-extended/libarchive/libarchive_3.5.1.bb | |||
@@ -10,7 +10,6 @@ DEPENDS = "e2fsprogs-native" | |||
10 | PACKAGECONFIG ?= "zlib bz2 xz lzo" | 10 | PACKAGECONFIG ?= "zlib bz2 xz lzo" |
11 | 11 | ||
12 | PACKAGECONFIG_append_class-target = "\ | 12 | PACKAGECONFIG_append_class-target = "\ |
13 | libxml2 \ | ||
14 | ${@bb.utils.filter('DISTRO_FEATURES', 'acl xattr', d)} \ | 13 | ${@bb.utils.filter('DISTRO_FEATURES', 'acl xattr', d)} \ |
15 | " | 14 | " |
16 | 15 | ||