diff options
author | Bruce Ashfield <bruce.ashfield@windriver.com> | 2015-07-30 11:03:14 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-08-01 07:34:08 +0100 |
commit | 4c8f27430ad7349f127d9d17ebc1ebe62d6334b7 (patch) | |
tree | d22d5d352f5b262f3cfc22dee5cb4dfc0d6b1619 /meta | |
parent | 77e3946a3f6a660527da589e9d5b40978f1322bb (diff) | |
download | poky-4c8f27430ad7349f127d9d17ebc1ebe62d6334b7.tar.gz |
perf: add liblzma depdenency
With kernel commit 6c6f0f6164f [tools build: Add feature check for lzma
library], perf now performs a test for lzma and adds functionality
appropriately.
This currently is a floating dependency that will sometimes be present,
and sometimes not. The result is the following QA warning:
WARNING: QA Issue: perf rdepends on liblzma, but it isn't a build dependency? [build-deps]
By adding xz to the DEPENDS, we'll ensure that it is consistently in
place.
[YOCTO: #8045]
(From OE-Core rev: 2b7bf357e126bf272504548a4692cf764fd7f8ea)
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.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 056ac831f7..246f1b47f7 100644 --- a/meta/recipes-kernel/perf/perf.bb +++ b/meta/recipes-kernel/perf/perf.bb | |||
@@ -29,7 +29,7 @@ DEPENDS = " \ | |||
29 | ${TUI_DEPENDS} \ | 29 | ${TUI_DEPENDS} \ |
30 | ${SCRIPTING_DEPENDS} \ | 30 | ${SCRIPTING_DEPENDS} \ |
31 | ${LIBUNWIND_DEPENDS} \ | 31 | ${LIBUNWIND_DEPENDS} \ |
32 | bison flex \ | 32 | bison flex xz \ |
33 | " | 33 | " |
34 | 34 | ||
35 | do_configure[depends] += "virtual/kernel:do_shared_workdir" | 35 | do_configure[depends] += "virtual/kernel:do_shared_workdir" |