From b9f421b1b94588c797e87e57554cc8d1b4b2aa8f Mon Sep 17 00:00:00 2001 From: Alex Gonzalez Date: Tue, 20 Nov 2012 16:33:57 +0100 Subject: [PATCH] fsl-mm-codeclib: Fix qa issue with fsl-mm-codeclib rdepend. The package was not including all the libraries being installed. That is because $SOLIBS extens to *.so.*, which meant that the .so files were not being packaged. I won't report this upstream as probably the source tarball they use won't have this problem. Signed-off-by: Alex Gonzalez --- .../recipes-multimedia/fsl-mm-core/fsl-mm-codeclib.inc | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/meta-digi-arm/recipes-multimedia/fsl-mm-core/fsl-mm-codeclib.inc b/meta-digi-arm/recipes-multimedia/fsl-mm-core/fsl-mm-codeclib.inc index 61d54e8d0..0176d02d3 100644 --- a/meta-digi-arm/recipes-multimedia/fsl-mm-core/fsl-mm-codeclib.inc +++ b/meta-digi-arm/recipes-multimedia/fsl-mm-core/fsl-mm-codeclib.inc @@ -29,7 +29,6 @@ do_install () { find ${D} -type f -exec chmod a-x '{}' ';' } -FILES_${PN} += "${libdir}/${SOLIBS}" -FILES_${PN}-dev += "${libdir}/${SOLIBSDEV}" +FILES_${PN} += "${libdir}/*.so*" PACKAGE_ARCH = "${MACHINE_ARCH}"