diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2015-03-11 09:14:54 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-03-20 23:56:01 +0000 |
commit | 31f15d6e8ab5980a407bbf316d955b12e8a8d2c9 (patch) | |
tree | e65a7ee207840c0efa31cdc7558814f514dcc6a3 /meta | |
parent | 76730a81717c39d89ca1bf82b345fb4f38daaa6d (diff) | |
download | poky-31f15d6e8ab5980a407bbf316d955b12e8a8d2c9.tar.gz |
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]
(From OE-Core rev: 6f39aae20d88a2d764c3a85617cd36b81af804f1)
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-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 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}" | |||
170 | 170 | ||
171 | PACKAGES =+ "${PN}-archive ${PN}-tests ${PN}-perl ${PN}-python" | 171 | PACKAGES =+ "${PN}-archive ${PN}-tests ${PN}-perl ${PN}-python" |
172 | 172 | ||
173 | RDEPENDS_${PN} += "elfutils" | 173 | RDEPENDS_${PN} += "elfutils bash" |
174 | RDEPENDS_${PN}-archive =+ "bash" | 174 | RDEPENDS_${PN}-archive =+ "bash" |
175 | RDEPENDS_${PN}-python =+ "bash python" | 175 | RDEPENDS_${PN}-python =+ "bash python" |
176 | RDEPENDS_${PN}-perl =+ "bash perl perl-modules" | 176 | RDEPENDS_${PN}-perl =+ "bash perl perl-modules" |