diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-16 14:57:08 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-16 16:47:43 +0000 |
commit | 59313f2b7ca263aa7b5342d835585bc1afe48051 (patch) | |
tree | c353219aa22a76e5eb8d7674319ee67eb660a89f /meta | |
parent | a7cd1421cb8d3df67c731b5ead293fceeea779c1 (diff) | |
download | poky-59313f2b7ca263aa7b5342d835585bc1afe48051.tar.gz |
cpio: Fix unpackaged files warnings
WARNING: For recipe cpio, the following files/directories were installed but not shipped in any package:
WARNING: /usr/bin
(From OE-Core rev: da88ac4b30a367641451167868bd8fc48010f646)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-extended/cpio/cpio_2.11.bb | 2 | ||||
-rw-r--r-- | meta/recipes-extended/cpio/cpio_v2.inc | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-extended/cpio/cpio_2.11.bb b/meta/recipes-extended/cpio/cpio_2.11.bb index 7e82ec0912..78da20e3d4 100644 --- a/meta/recipes-extended/cpio/cpio_2.11.bb +++ b/meta/recipes-extended/cpio/cpio_2.11.bb | |||
@@ -3,7 +3,7 @@ include cpio_v2.inc | |||
3 | LICENSE = "GPLv3" | 3 | LICENSE = "GPLv3" |
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949" | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949" |
5 | 5 | ||
6 | PR = "r0" | 6 | PR = "r1" |
7 | 7 | ||
8 | SRC_URI[md5sum] = "1112bb6c45863468b5496ba128792f6c" | 8 | SRC_URI[md5sum] = "1112bb6c45863468b5496ba128792f6c" |
9 | SRC_URI[sha256sum] = "601b1d774cd6e4cd39416203c91ec59dbd65dd27d79d75e1a9b89497ea643978" | 9 | SRC_URI[sha256sum] = "601b1d774cd6e4cd39416203c91ec59dbd65dd27d79d75e1a9b89497ea643978" |
diff --git a/meta/recipes-extended/cpio/cpio_v2.inc b/meta/recipes-extended/cpio/cpio_v2.inc index 3d024af84f..066e9374a2 100644 --- a/meta/recipes-extended/cpio/cpio_v2.inc +++ b/meta/recipes-extended/cpio/cpio_v2.inc | |||
@@ -18,6 +18,7 @@ do_install () { | |||
18 | autotools_do_install | 18 | autotools_do_install |
19 | install -d ${D}${base_bindir}/ | 19 | install -d ${D}${base_bindir}/ |
20 | mv "${D}${bindir}/cpio" "${D}${base_bindir}/cpio.${PN}" | 20 | mv "${D}${bindir}/cpio" "${D}${base_bindir}/cpio.${PN}" |
21 | rmdir ${D}${bindir}/ | ||
21 | case ${TARGET_OS} in | 22 | case ${TARGET_OS} in |
22 | *-uclibc*) ;; | 23 | *-uclibc*) ;; |
23 | *) mv "${D}${libexecdir}/rmt" "${D}${libexecdir}/rmt.${PN}" ;; | 24 | *) mv "${D}${libexecdir}/rmt" "${D}${libexecdir}/rmt.${PN}" ;; |