From: Richard Purdie Date: Wed, 2 Feb 2011 12:03:30 +0000 (+0000) Subject: autotools.bbclass: Drop info directory listings as they're going to be broken if... X-Git-Tag: 2011-1~2541 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=d1ed18812394ffea9d90fc48f2d806df78a9e3e0;p=openembedded-core.git autotools.bbclass: Drop info directory listings as they're going to be broken if generated at this point and cause file conflicts Signed-off-by: Richard Purdie --- diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass index 9f2d77644b..d43ae6d88b 100644 --- a/meta/classes/autotools.bbclass +++ b/meta/classes/autotools.bbclass @@ -158,6 +158,10 @@ autotools_do_configure() { autotools_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 } inherit siteconfig