]> code.ossystems Code Review - openembedded-core.git/commitdiff
hwlatdetect: fix RDEPENDS to avoid QA failures master-next-2.5
authorAlejandro Hernandez <alejandro.hernandez@linux.intel.com>
Mon, 21 Aug 2017 22:09:59 +0000 (15:09 -0700)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 14 Sep 2017 13:07:53 +0000 (14:07 +0100)
When listing python3 as an RDEPENDS, the image will in fact
contain python3-modules, but the QA check fails to get
RPROVIDERS correctly (since the python3 package does not
actually exist), /usr/bin/python3 is provided by the
python3-core package, so by fixing the RDEPENDS and listing
python3-core instead of python3, the QA check works correctly
and we avoid failures.

Signed-off-by: Alejandro Hernandez <alejandro.hernandez@linux.intel.com>
meta/recipes-rt/rt-tests/hwlatdetect_1.1.bb

index 60b44a4d2583b4291607405315df3a3fb562e370..5f61c4ecddc7a6d49df2ab73bc92ddc9775020bc 100644 (file)
@@ -22,5 +22,5 @@ do_install() {
 }
 
 FILES_${PN} += "${libdir}/python${PYTHON_BASEVERSION}/dist-packages/hwlatdetect.py"
-RDEPENDS_${PN} = "python3 "
+RDEPENDS_${PN} = "python3-core "
 RRECOMMENDS_${PN} = "kernel-module-hwlat-detector"