diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-02 12:03:30 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-02-02 16:56:24 +0000 |
commit | d1ed18812394ffea9d90fc48f2d806df78a9e3e0 (patch) | |
tree | fa654ba680e93502b0d68f3710d6f544375a2961 /meta/classes/autotools.bbclass | |
parent | 95f13b16877a1606e9470567a3744ac133ebf621 (diff) | |
download | poky-d1ed18812394ffea9d90fc48f2d806df78a9e3e0.tar.gz |
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 <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/classes/autotools.bbclass')
-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 |