diff options
author | Tudor Florea <tudor.florea@enea.com> | 2016-04-21 10:36:16 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-04-22 16:28:57 +0100 |
commit | 7da7587da1e920fcc67404ea34e915c93352eed6 (patch) | |
tree | 7967280243f0859018605bf9bde852f67f1ed62e /meta/recipes-devtools | |
parent | 1bcdc89ce5038c16127d3541af0fc6ca828b9e97 (diff) | |
download | poky-7da7587da1e920fcc67404ea34e915c93352eed6.tar.gz |
valgrind: turn off the file level dependency
Attempting to install ptest for valgrind fails with this error:
error: Can't install valgrind-ptest-3.11.0-r0.1@ppce500mc: no package
provides /this/is/a/bogus/interpreter/name
This is because one of the tests contains a bogus interpreter path on purpose
It is not enough to skip the QA warning about the missing dependency
but the dependency have to be completely removed.
Since this package contains oly tests it is safe to disable per file
dependencies and rely on the ones per package.
(From OE-Core rev: 916650b91656fac4effde6d260006ba15f8ba23a)
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools')
-rw-r--r-- | meta/recipes-devtools/valgrind/valgrind_3.11.0.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta/recipes-devtools/valgrind/valgrind_3.11.0.bb b/meta/recipes-devtools/valgrind/valgrind_3.11.0.bb index 51c88bf7aa..824050075a 100644 --- a/meta/recipes-devtools/valgrind/valgrind_3.11.0.bb +++ b/meta/recipes-devtools/valgrind/valgrind_3.11.0.bb | |||
@@ -68,9 +68,9 @@ RRECOMMENDS_${PN} += "${TCLIBC}-dbg" | |||
68 | RDEPENDS_${PN}-ptest += " sed perl perl-module-file-glob" | 68 | RDEPENDS_${PN}-ptest += " sed perl perl-module-file-glob" |
69 | RDEPENDS_${PN}-ptest_append_libc-glibc = " glibc-utils" | 69 | RDEPENDS_${PN}-ptest_append_libc-glibc = " glibc-utils" |
70 | 70 | ||
71 | # One of the tests contains a bogus interpreter path on purpose, and QA | 71 | # One of the tests contains a bogus interpreter path on purpose. |
72 | # check complains about it | 72 | # Skip file dependency check |
73 | INSANE_SKIP_${PN}-ptest += "file-rdeps" | 73 | SKIP_FILEDEPS_${PN}-ptest = '1' |
74 | 74 | ||
75 | do_compile_ptest() { | 75 | do_compile_ptest() { |
76 | oe_runmake check | 76 | oe_runmake check |