diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-16 14:57:29 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-16 16:47:44 +0000 |
commit | 1871ec8d015ca691a527c0a3e166d076b46dd970 (patch) | |
tree | da902a11ffb304b0d064fa3c61381e6761a2973b | |
parent | 59313f2b7ca263aa7b5342d835585bc1afe48051 (diff) | |
download | poky-1871ec8d015ca691a527c0a3e166d076b46dd970.tar.gz |
sed: Fix unpackaged files warnings
WARNING: For recipe sed, the following files/directories were installed but not shipped in any package:
WARNING: /usr/bin
(From OE-Core rev: 93ba71e53d3295e35ef3a1c424d0a348a66c2f22)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r-- | meta/recipes-extended/sed/sed_4.2.1.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-extended/sed/sed_4.2.1.bb b/meta/recipes-extended/sed/sed_4.2.1.bb index d775d44b44..9fbb6e7e12 100644 --- a/meta/recipes-extended/sed/sed_4.2.1.bb +++ b/meta/recipes-extended/sed/sed_4.2.1.bb | |||
@@ -4,7 +4,7 @@ LICENSE = "GPLv3+" | |||
4 | LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949 \ | 4 | LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949 \ |
5 | file://sed/sed.h;beginline=1;endline=17;md5=767ab3a06d7584f6fd0469abaec4412f" | 5 | file://sed/sed.h;beginline=1;endline=17;md5=767ab3a06d7584f6fd0469abaec4412f" |
6 | SECTION = "console/utils" | 6 | SECTION = "console/utils" |
7 | PR = "r1" | 7 | PR = "r2" |
8 | 8 | ||
9 | SRC_URI = "${GNU_MIRROR}/sed/sed-${PV}.tar.gz" | 9 | SRC_URI = "${GNU_MIRROR}/sed/sed-${PV}.tar.gz" |
10 | 10 | ||
@@ -17,6 +17,7 @@ do_install () { | |||
17 | autotools_do_install | 17 | autotools_do_install |
18 | install -d ${D}${base_bindir} | 18 | install -d ${D}${base_bindir} |
19 | mv ${D}${bindir}/sed ${D}${base_bindir}/sed.${PN} | 19 | mv ${D}${bindir}/sed ${D}${base_bindir}/sed.${PN} |
20 | rmdir ${D}${bindir}/ | ||
20 | } | 21 | } |
21 | 22 | ||
22 | ALTERNATIVE_NAME = "sed" | 23 | ALTERNATIVE_NAME = "sed" |