summaryrefslogtreecommitdiffstats
path: root/meta/recipes-kernel
diff options
context:
space:
mode:
authorBruce Ashfield <bruce.ashfield@gmail.com>2021-05-03 08:54:31 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-05-13 22:10:06 +0100
commitc74bca902b05479868b44a2661954a28ad4aaa31 (patch)
tree80e74e50ba16ab4d8eacdc51b0d427a5b02d42a8 /meta/recipes-kernel
parente6bf1590cc9c93fa70263cd11ba327a1393fb3a5 (diff)
downloadpoky-c74bca902b05479868b44a2661954a28ad4aaa31.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: 489541edb82b0d3de68f60b38e7465b2f5511ec0) Signed-off-by: Bruce Ashfield <bruce.ashfield@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 7eccb9c0c2ea00685451c44cb8faa96c4a2272fd) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel')
-rw-r--r--meta/recipes-kernel/perf/perf.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-kernel/perf/perf.bb b/meta/recipes-kernel/perf/perf.bb
index 578b871e9e..b6f50583f7 100644
--- a/meta/recipes-kernel/perf/perf.bb
+++ b/meta/recipes-kernel/perf/perf.bb
@@ -265,7 +265,7 @@ PACKAGES =+ "${PN}-archive ${PN}-tests ${PN}-perl ${PN}-python"
265 265
266RDEPENDS_${PN} += "elfutils bash" 266RDEPENDS_${PN} += "elfutils bash"
267RDEPENDS_${PN}-archive =+ "bash" 267RDEPENDS_${PN}-archive =+ "bash"
268RDEPENDS_${PN}-python =+ "bash python3 python3-modules ${@bb.utils.contains('PACKAGECONFIG', 'audit', 'audit-python3', '', d)}" 268RDEPENDS_${PN}-python =+ "bash python3 python3-modules ${@bb.utils.contains('PACKAGECONFIG', 'audit', 'audit-python', '', d)}"
269RDEPENDS_${PN}-perl =+ "bash perl perl-modules" 269RDEPENDS_${PN}-perl =+ "bash perl perl-modules"
270RDEPENDS_${PN}-tests =+ "python3" 270RDEPENDS_${PN}-tests =+ "python3"
271 271