[oe-commits] [openembedded-core] 06/06: hwlatdetect: fix RDEPENDS to avoid QA failures

git at git.openembedded.org git at git.openembedded.org
Thu Aug 24 21:43:34 UTC 2017


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master-next
in repository openembedded-core.

commit 1fe54ba4bf1bbfd28a217be6e74a27fe8d8adf12
Author: Alejandro Hernandez <alejandro.hernandez at linux.intel.com>
AuthorDate: Mon Aug 21 15:09:59 2017 -0700

    hwlatdetect: fix RDEPENDS to avoid QA failures
    
    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 at linux.intel.com>
---
 meta/recipes-rt/rt-tests/hwlatdetect_1.1.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/recipes-rt/rt-tests/hwlatdetect_1.1.bb b/meta/recipes-rt/rt-tests/hwlatdetect_1.1.bb
index 60b44a4..5f61c4e 100644
--- a/meta/recipes-rt/rt-tests/hwlatdetect_1.1.bb
+++ b/meta/recipes-rt/rt-tests/hwlatdetect_1.1.bb
@@ -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"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list