From: Bruce Ashfield Date: Wed, 11 Mar 2015 13:14:54 +0000 (-0400) Subject: perf: add bash to RDEPENDS X-Git-Tag: 2015-4~104 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=6f39aae20d88a2d764c3a85617cd36b81af804f1;p=openembedded-core.git perf: add bash to RDEPENDS 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 --- diff --git a/meta/recipes-kernel/perf/perf.bb b/meta/recipes-kernel/perf/perf.bb index f69d177949..420fe6b57a 100644 --- a/meta/recipes-kernel/perf/perf.bb +++ b/meta/recipes-kernel/perf/perf.bb @@ -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"