diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2014-03-31 13:38:11 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-04-20 10:46:50 +0200 |
commit | ddc70af341fe77c114b17bcf6d4f3f01fa5cb7eb (patch) | |
tree | 7cac3ce1ff689fba31bae045b6eb446bb254d066 /meta-oe/recipes-support/lzip | |
parent | 2d454103bb8c7783e4fc8185fc08a5859cb63308 (diff) | |
download | meta-openembedded-ddc70af341fe77c114b17bcf6d4f3f01fa5cb7eb.tar.gz |
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.
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/lzip')
-rw-r--r-- | meta-oe/recipes-support/lzip/lzip_1.14.bb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/lzip/lzip_1.14.bb b/meta-oe/recipes-support/lzip/lzip_1.14.bb index 8b4a3fb6b..3d8c090aa 100644 --- a/meta-oe/recipes-support/lzip/lzip_1.14.bb +++ b/meta-oe/recipes-support/lzip/lzip_1.14.bb | |||
@@ -35,6 +35,10 @@ do_configure () { | |||
35 | 35 | ||
36 | do_install () { | 36 | do_install () { |
37 | oe_runmake 'DESTDIR=${D}' install | 37 | oe_runmake 'DESTDIR=${D}' install |
38 | # Info dir listing isn't interesting at this point so remove it if it exists. | ||
39 | if [ -e "${D}${infodir}/dir" ]; then | ||
40 | rm -f ${D}${infodir}/dir | ||
41 | fi | ||
38 | } | 42 | } |
39 | 43 | ||
40 | BBCLASSEXTEND += "native nativesdk" | 44 | BBCLASSEXTEND += "native nativesdk" |