diff options
-rw-r--r-- | meta/classes/autotools.bbclass | 4 |
1 files changed, 4 insertions, 0 deletions
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() { | |||
158 | 158 | ||
159 | autotools_do_install() { | 159 | autotools_do_install() { |
160 | oe_runmake 'DESTDIR=${D}' install | 160 | oe_runmake 'DESTDIR=${D}' install |
161 | # Info dir listing isn't interesting at this point so remove it if it exists. | ||
162 | if [ -e "${D}${infodir}/dir" ]; then | ||
163 | rm -f ${D}${infodir}/dir | ||
164 | fi | ||
161 | } | 165 | } |
162 | 166 | ||
163 | inherit siteconfig | 167 | inherit siteconfig |