diff options
author | Alexander Kanavin <alexander.kanavin@linux.intel.com> | 2016-10-24 18:37:02 +0300 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-11-06 23:35:33 +0000 |
commit | 9bb4d21aa778d7b0266d9cb4bbe8a17faecbbea2 (patch) | |
tree | 6f15e8c01918be40c76c85ab891a0a727fcadc09 /meta/recipes-kernel | |
parent | 5a4b71effa1ea042a5fb0816a495ba89ad1a5800 (diff) | |
download | poky-9bb4d21aa778d7b0266d9cb4bbe8a17faecbbea2.tar.gz |
lttng-tools: do not install shared libraries in ptest package
This was creating a race in runtime library dependency resolution
where sometimes the library was assumed to be provided by the ptest
package.
(From OE-Core rev: c4a10c0b4bc14f4bac06deed8ecb64d0303f4029)
Signed-off-by: Alexander Kanavin <alexander.kanavin@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-kernel')
-rw-r--r-- | meta/recipes-kernel/lttng/lttng-tools_git.bb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/recipes-kernel/lttng/lttng-tools_git.bb b/meta/recipes-kernel/lttng/lttng-tools_git.bb index 016346fc87..0d2bd005e4 100644 --- a/meta/recipes-kernel/lttng/lttng-tools_git.bb +++ b/meta/recipes-kernel/lttng/lttng-tools_git.bb | |||
@@ -113,4 +113,7 @@ do_install_ptest () { | |||
113 | # checkpatch.pl is unneeded on target and causes file-rdeps QA | 113 | # checkpatch.pl is unneeded on target and causes file-rdeps QA |
114 | # warnings. | 114 | # warnings. |
115 | rm -f ${D}${PTEST_PATH}/extras/checkpatch.pl | 115 | rm -f ${D}${PTEST_PATH}/extras/checkpatch.pl |
116 | |||
117 | # Remove built libraries as they confuse the packages' runtime dependency resolution | ||
118 | rm -rf ${D}${PTEST_PATH}/src/lib/lttng-ctl/.libs/ | ||
116 | } | 119 | } |