From: Martin Jansa Date: Mon, 31 Mar 2014 11:38:11 +0000 (+0200) Subject: lzip: remove infodir X-Git-Tag: rev_ivi_2015_02_04~2237 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=a25ee7a71740b29b7a545bbfc06eddad4a10c63d;p=scm%2Fbb%2Ftizen-distro.git lzip: remove infodir * 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. (From meta-openembedded rev: ddc70af341fe77c114b17bcf6d4f3f01fa5cb7eb) Signed-off-by: Martin Jansa Signed-off-by: Patrick Ohly --- diff --git a/meta-openembedded/meta-oe/recipes-support/lzip/lzip_1.14.bb b/meta-openembedded/meta-oe/recipes-support/lzip/lzip_1.14.bb index 8b4a3fb..3d8c090 100644 --- a/meta-openembedded/meta-oe/recipes-support/lzip/lzip_1.14.bb +++ b/meta-openembedded/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"