summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTom Zanussi <tom.zanussi@linux.intel.com>2013-03-01 11:34:56 -0600
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-04-23 13:00:48 +0100
commitc0468d398c5a14baaa5a8491d29091f06737784c (patch)
treefa73c6d3bc454583884802d078a21b94bf0a1160
parentfe66c080cf6150b0c4c1bd1d969e0b5b9d671cd5 (diff)
downloadpoky-c0468d398c5a14baaa5a8491d29091f06737784c.tar.gz
perf: add bash dependency
There are a number of scripts in the perf installation that use bash, so we need to add a run-time dependency on bash for them. If not, we can generate build errors like "no package provides /bin/bash". Fixes [YOCTO #3951]. (From OE-Core rev: 550e743309b424e7f494323f4abd881260720618) Signed-off-by: Tom Zanussi <tom.zanussi@linux.intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-kernel/perf/perf_3.4.bb2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/recipes-kernel/perf/perf_3.4.bb b/meta/recipes-kernel/perf/perf_3.4.bb
index decc911de5..d25b436d6a 100644
--- a/meta/recipes-kernel/perf/perf_3.4.bb
+++ b/meta/recipes-kernel/perf/perf_3.4.bb
@@ -28,7 +28,7 @@ DEPENDS = "virtual/kernel \
28 " 28 "
29 29
30SCRIPTING_RDEPENDS = "${@perf_feature_enabled('perf-scripting', 'perl perl-modules python', '',d)}" 30SCRIPTING_RDEPENDS = "${@perf_feature_enabled('perf-scripting', 'perl perl-modules python', '',d)}"
31RDEPENDS_${PN} += "elfutils ${SCRIPTING_RDEPENDS}" 31RDEPENDS_${PN} += "elfutils bash ${SCRIPTING_RDEPENDS}"
32 32
33PROVIDES = "virtual/perf" 33PROVIDES = "virtual/perf"
34 34