diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2023-05-03 16:25:50 +0200 |
---|---|---|
committer | Armin Kuster <akuster808@gmail.com> | 2023-05-16 07:30:12 -0400 |
commit | 02ddb699b95e1f02fbe179fbeef67ca4e8d4de73 (patch) | |
tree | 319d1165222a5a545426df816b7bec80b6d3d1d7 | |
parent | 54b177f4acb3048d21a68f180fc183d0fdf47a94 (diff) | |
download | meta-openembedded-02ddb699b95e1f02fbe179fbeef67ca4e8d4de73.tar.gz |
libreport: add dependency on libarchive
* it's often pulled by elfutils when debuginfod is in DISTRO_FEATURES, but
when it isn't, it fails with:
http://errors.yoctoproject.org/Errors/Details/702773/
checking for libarchive... no
configure: error: Package requirements (libarchive) were not met:
No package 'libarchive' found
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r-- | meta-oe/recipes-extended/libreport/libreport_2.17.8.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-oe/recipes-extended/libreport/libreport_2.17.8.bb b/meta-oe/recipes-extended/libreport/libreport_2.17.8.bb index a8d1db65bf..1f2c55c699 100644 --- a/meta-oe/recipes-extended/libreport/libreport_2.17.8.bb +++ b/meta-oe/recipes-extended/libreport/libreport_2.17.8.bb | |||
@@ -4,7 +4,7 @@ SUMMARY = "Generic library for reporting various problems" | |||
4 | HOMEPAGE = "https://abrt.readthedocs.org/" | 4 | HOMEPAGE = "https://abrt.readthedocs.org/" |
5 | LICENSE = "GPL-2.0-or-later" | 5 | LICENSE = "GPL-2.0-or-later" |
6 | DEPENDS = "xmlrpc-c xmlrpc-c-native intltool-native \ | 6 | DEPENDS = "xmlrpc-c xmlrpc-c-native intltool-native \ |
7 | json-c libtar libnewt libproxy rpm \ | 7 | json-c libarchive libtar libnewt libproxy rpm \ |
8 | augeas satyr systemd \ | 8 | augeas satyr systemd \ |
9 | " | 9 | " |
10 | 10 | ||