summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClaus Stovgaard <claus.stovgaard@gmail.com>2024-11-18 14:04:58 +0100
committerKhem Raj <raj.khem@gmail.com>2024-11-19 16:59:16 -0800
commite7f560b9b8dacf7aadf59d6321c2e869dcd5831e (patch)
tree46c4612b4edf9742c83cc4cf4e87fb36daa414cc
parent7ec1c9afdf45a3ee47bfff0470d90cf215ba4da5 (diff)
downloadmeta-openembedded-e7f560b9b8dacf7aadf59d6321c2e869dcd5831e.tar.gz
lcov: Add missing RDEPENDS
Found by just adding lcov to core-image-minimal, running geninfo and getting errors like. Can't locate Module/Load.pm in @INC (you may need to install the Module::Load module) ... at /usr/bin/geninfo line 63. BEGIN failed--compilation aborted at /usr/bin/geninfo line 63. Can't locate Module/Metadata.pm in @INC (you may need to install the Module::Metadata module) ... at /usr/lib/perl5/5.38.2/Module/Load/Conditional.pm line 14. BEGIN failed--compilation aborted at /usr/lib/perl5/5.38.2/Module/Load/Conditional.pm line 14. Compilation failed in require at /usr/bin/geninfo line 64. Signed-off-by: Claus Stovgaard <claus.stovgaard@gmail.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rwxr-xr-xmeta-oe/recipes-support/lcov/lcov_1.16.bb4
1 files changed, 4 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/lcov/lcov_1.16.bb b/meta-oe/recipes-support/lcov/lcov_1.16.bb
index e566aeb870..a889b3fa82 100755
--- a/meta-oe/recipes-support/lcov/lcov_1.16.bb
+++ b/meta-oe/recipes-support/lcov/lcov_1.16.bb
@@ -9,7 +9,9 @@ LICENSE = "GPL-2.0-only"
9LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" 9LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
10 10
11RDEPENDS:${PN} += " \ 11RDEPENDS:${PN} += " \
12 libjson-perl \
12 perl \ 13 perl \
14 perl-module-compress-zlib \
13 perl-module-constant \ 15 perl-module-constant \
14 perl-module-cwd \ 16 perl-module-cwd \
15 perl-module-digest-md5 \ 17 perl-module-digest-md5 \
@@ -27,6 +29,8 @@ RDEPENDS:${PN} += " \
27 perl-module-getopt-long \ 29 perl-module-getopt-long \
28 perl-module-getopt-std \ 30 perl-module-getopt-std \
29 perl-module-list-util \ 31 perl-module-list-util \
32 perl-module-load \
33 perl-module-metadata \
30 perl-module-mro \ 34 perl-module-mro \
31 perl-module-overload \ 35 perl-module-overload \
32 perl-module-overload-numbers \ 36 perl-module-overload-numbers \