aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-extended/ed
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2014-04-02 12:25:34 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-04-04 11:49:43 +0100
commit205621e3b9358a455e73122941fbbdcde9b2f2a3 (patch)
treee7074def4d2b5fd0867302dc41d4a7da45ea7941 /meta/recipes-extended/ed
parent4f2dee0d8c2c3f60cb8f8021343e973cae31fc50 (diff)
downloadopenembedded-core-contrib-205621e3b9358a455e73122941fbbdcde9b2f2a3.tar.gz
ed: remove infodir
* unlike 0.5 version, this doesn't use autotools.bbclass which removes infodir automatically * fixes QA warning: ed-1.9: The /usr/share/info/dir file is not meant to be shipped in a particular package. Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-extended/ed')
-rw-r--r--meta/recipes-extended/ed/ed_1.9.bb4
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-extended/ed/ed_1.9.bb b/meta/recipes-extended/ed/ed_1.9.bb
index 8ae99cc3e8..d1621548dc 100644
--- a/meta/recipes-extended/ed/ed_1.9.bb
+++ b/meta/recipes-extended/ed/ed_1.9.bb
@@ -22,4 +22,8 @@ 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
}