summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClaus Stovgaard <claus.stovgaard@gmail.com>2025-03-08 14:34:05 +0530
committerArmin Kuster <akuster808@gmail.com>2025-03-23 15:27:02 -0400
commit5412412b97a6890869d2efaf21bf7a021fe9b0a2 (patch)
treef101bfbe190a75562e59f287565639a223c8b66c
parentc06d8dc3e5886d61c6a3d401b4591436a3391b37 (diff)
downloadmeta-openembedded-5412412b97a6890869d2efaf21bf7a021fe9b0a2.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> (cherry picked from commit e7f560b9b8dacf7aadf59d6321c2e869dcd5831e) Signed-off-by: Akash Hadke <akash.hadke27@gmail.com> Signed-off-by: Armin Kuster <akuster808@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 53e1921054..81b80790fe 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 \