]> code.ossystems Code Review - openembedded-core.git/commitdiff
perf: add bash to RDEPENDS
authorBruce Ashfield <bruce.ashfield@windriver.com>
Wed, 11 Mar 2015 13:14:54 +0000 (09:14 -0400)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 20 Mar 2015 11:03:17 +0000 (11:03 +0000)
perf has a dependency on bash in its utilities, which generate the
following warning:

  WARNING: QA Issue: perf requires /bin/bash, but no providers in its RDEPENDS [file-rdeps]

Since perf is not installed on extremely small systems, we just add
bash to the RDEPENDS, rather than modifying scripts or removing content.

[YOCTO: #7445]

Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
meta/recipes-kernel/perf/perf.bb

index f69d177949e533ecfb8a26465fd37607246bd945..420fe6b57aba8d417b3a6496703706dfb62a01a3 100644 (file)
@@ -170,7 +170,7 @@ PACKAGE_ARCH = "${MACHINE_ARCH}"
 
 PACKAGES =+ "${PN}-archive ${PN}-tests ${PN}-perl ${PN}-python"
 
-RDEPENDS_${PN} += "elfutils"
+RDEPENDS_${PN} += "elfutils bash"
 RDEPENDS_${PN}-archive =+ "bash"
 RDEPENDS_${PN}-python =+ "bash python"
 RDEPENDS_${PN}-perl =+ "bash perl perl-modules"