diff options
author | Bruce Ashfield <bruce.ashfield@gmail.com> | 2021-05-03 08:54:31 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-05-04 22:48:16 +0100 |
commit | 327eb77b0e39eba27f079d351415411913eb1e27 (patch) | |
tree | efb75194b2d7526a8b8f06e043cf9a464502c058 /meta/recipes-kernel/perf | |
parent | afca35c6650e0808fe117e2f7544ffed680a4a7f (diff) | |
download | poky-327eb77b0e39eba27f079d351415411913eb1e27.tar.gz |
perf: fix python-audit RDEPENDS
When doing the perf python3 conversion, the audit-python RDEPENDS
was caught up in the regex replacement and was incorrectly changed.
The audit recipe continues to produce a package called audit-python
and it is that package we should have as a RDEPENDS.
(From OE-Core rev: 7eccb9c0c2ea00685451c44cb8faa96c4a2272fd)
Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel/perf')
-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 e5e5a0d267..2dfd798ef7 100644 --- a/meta/recipes-kernel/perf/perf.bb +++ b/meta/recipes-kernel/perf/perf.bb | |||
@@ -322,7 +322,7 @@ PACKAGES =+ "${PN}-archive ${PN}-tests ${PN}-perl ${PN}-python" | |||
322 | 322 | ||
323 | RDEPENDS_${PN} += "elfutils bash" | 323 | RDEPENDS_${PN} += "elfutils bash" |
324 | RDEPENDS_${PN}-archive =+ "bash" | 324 | RDEPENDS_${PN}-archive =+ "bash" |
325 | RDEPENDS_${PN}-python =+ "bash python3 python3-modules ${@bb.utils.contains('PACKAGECONFIG', 'audit', 'audit-python3', '', d)}" | 325 | RDEPENDS_${PN}-python =+ "bash python3 python3-modules ${@bb.utils.contains('PACKAGECONFIG', 'audit', 'audit-python', '', d)}" |
326 | RDEPENDS_${PN}-perl =+ "bash perl perl-modules" | 326 | RDEPENDS_${PN}-perl =+ "bash perl perl-modules" |
327 | RDEPENDS_${PN}-tests =+ "python3 bash" | 327 | RDEPENDS_${PN}-tests =+ "python3 bash" |
328 | 328 | ||