* doesn't use autotools.bbclass which removes infodir automatically * fixes QA warning: lzip-1.14: The /usr/share/info/dir file is not meant to be shipped in a particular package.
Signed-off-by: Martin Jansa <[email protected]> --- meta-oe/recipes-support/lzip/lzip_1.14.bb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/meta-oe/recipes-support/lzip/lzip_1.14.bb b/meta-oe/recipes-support/lzip/lzip_1.14.bb index 8b4a3fb..3d8c090 100644 --- a/meta-oe/recipes-support/lzip/lzip_1.14.bb +++ b/meta-oe/recipes-support/lzip/lzip_1.14.bb @@ -35,6 +35,10 @@ do_configure () { do_install () { oe_runmake 'DESTDIR=${D}' install + # Info dir listing isn't interesting at this point so remove it if it exists. + if [ -e "${D}${infodir}/dir" ]; then + rm -f ${D}${infodir}/dir + fi } BBCLASSEXTEND += "native nativesdk" -- 1.9.1 -- _______________________________________________ Openembedded-devel mailing list [email protected] http://lists.openembedded.org/mailman/listinfo/openembedded-devel
