diff options
| author | Ryan Eatmon <reatmon@ti.com> | 2024-02-27 19:33:27 -0600 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2024-04-04 21:50:24 +0100 |
| commit | 38f6f3a0664467bf9768802c7faced04e404efeb (patch) | |
| tree | 5366375b6b7ab7054eed805de1ff3b704094ae3c | |
| parent | acdb1bb14e15947c5e4dd0f30270a0eaa7083edb (diff) | |
| download | poky-38f6f3a0664467bf9768802c7faced04e404efeb.tar.gz | |
perf: Fix QA error due to most recent kernel
A change in the latest kernel (next), triggers a QA error due to a
missing RDEPENDS on perl for perf-tests.
ERROR: QA Issue: /usr/libexec/perf-core/tests/shell/common/check_no_patterns_found.pl contained in package perf-tests requires /usr/bin/perl, but no providers found in RDEPENDS:perf-tests? [file-rdeps]
(From OE-Core rev: a85e8eb558acbfd77fe83ad150f3dab2f240b094)
Signed-off-by: Ryan Eatmon <reatmon@ti.com>
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/recipes-kernel/perf/perf.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-kernel/perf/perf.bb b/meta/recipes-kernel/perf/perf.bb index 4f26813de0..ae7e24aa0c 100644 --- a/meta/recipes-kernel/perf/perf.bb +++ b/meta/recipes-kernel/perf/perf.bb | |||
| @@ -382,7 +382,7 @@ RDEPENDS:${PN} += "elfutils bash" | |||
| 382 | RDEPENDS:${PN}-archive =+ "bash" | 382 | RDEPENDS:${PN}-archive =+ "bash" |
| 383 | RDEPENDS:${PN}-python =+ "bash python3 python3-modules ${@bb.utils.contains('PACKAGECONFIG', 'audit', 'audit-python', '', d)}" | 383 | RDEPENDS:${PN}-python =+ "bash python3 python3-modules ${@bb.utils.contains('PACKAGECONFIG', 'audit', 'audit-python', '', d)}" |
| 384 | RDEPENDS:${PN}-perl =+ "bash perl perl-modules" | 384 | RDEPENDS:${PN}-perl =+ "bash perl perl-modules" |
| 385 | RDEPENDS:${PN}-tests =+ "python3 bash" | 385 | RDEPENDS:${PN}-tests =+ "python3 bash perl" |
| 386 | 386 | ||
| 387 | RSUGGESTS:${PN} += "${PN}-archive ${PN}-tests \ | 387 | RSUGGESTS:${PN} += "${PN}-archive ${PN}-tests \ |
| 388 | ${@bb.utils.contains('PACKAGECONFIG', 'perl', '${PN}-perl', '', d)} \ | 388 | ${@bb.utils.contains('PACKAGECONFIG', 'perl', '${PN}-perl', '', d)} \ |
