diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-16 14:56:48 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-16 16:47:43 +0000 |
commit | a7cd1421cb8d3df67c731b5ead293fceeea779c1 (patch) | |
tree | 8a7c1a522899fc6eabd355c354e95358f10e3a54 | |
parent | 61f50d884081096366cbe639a22f242500fb7bc3 (diff) | |
download | poky-a7cd1421cb8d3df67c731b5ead293fceeea779c1.tar.gz |
unzip: Fix unpackaged files warnings
WARNING: For recipe unzip, the following files/directories were installed but not shipped in any package:
WARNING: /usr/man
(From OE-Core rev: c07c236056ef5b2fe462c3025ac41bd618a62542)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-extended/unzip/unzip_6.0.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-extended/unzip/unzip_6.0.bb b/meta/recipes-extended/unzip/unzip_6.0.bb index 79e450de1b..e11f9f7781 100644 --- a/meta/recipes-extended/unzip/unzip_6.0.bb +++ b/meta/recipes-extended/unzip/unzip_6.0.bb | |||
@@ -4,7 +4,7 @@ SECTION = "console/utils" | |||
4 | LICENSE = "BSD-3-Clause" | 4 | LICENSE = "BSD-3-Clause" |
5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=94caec5a51ef55ef711ee4e8b1c69e29" | 5 | LIC_FILES_CHKSUM = "file://LICENSE;md5=94caec5a51ef55ef711ee4e8b1c69e29" |
6 | PE = "1" | 6 | PE = "1" |
7 | PR = "r2" | 7 | PR = "r3" |
8 | 8 | ||
9 | SRC_URI = "ftp://ftp.info-zip.org/pub/infozip/src/unzip60.tgz \ | 9 | SRC_URI = "ftp://ftp.info-zip.org/pub/infozip/src/unzip60.tgz \ |
10 | file://avoid-strip.patch" | 10 | file://avoid-strip.patch" |
@@ -26,6 +26,7 @@ do_install() { | |||
26 | oe_runmake -f unix/Makefile install prefix=${D}${prefix} | 26 | oe_runmake -f unix/Makefile install prefix=${D}${prefix} |
27 | install -d ${D}${mandir} | 27 | install -d ${D}${mandir} |
28 | mv ${D}${prefix}/man/* ${D}${mandir} | 28 | mv ${D}${prefix}/man/* ${D}${mandir} |
29 | rmdir ${D}${prefix}/man/ | ||
29 | } | 30 | } |
30 | 31 | ||
31 | BBCLASSEXTEND = "native" | 32 | BBCLASSEXTEND = "native" |