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:46:28 +0000 |
commit | 93ba71e53d3295e35ef3a1c424d0a348a66c2f22 (patch) | |
tree | e2a9e35329ba678df3575704246ddeccfd2ce2e8 /meta | |
parent | da88ac4b30a367641451167868bd8fc48010f646 (diff) | |
download | openembedded-core-93ba71e53d3295e35ef3a1c424d0a348a66c2f22.tar.gz openembedded-core-93ba71e53d3295e35ef3a1c424d0a348a66c2f22.tar.bz2 openembedded-core-93ba71e53d3295e35ef3a1c424d0a348a66c2f22.zip |
sed: Fix unpackaged files warnings
WARNING: For recipe sed, the following files/directories were installed but not shipped in any package:
WARNING: /usr/bin
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-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+" LIC_FILES_CHKSUM = "file://COPYING;md5=f27defe1e96c2e1ecd4e0c9be8967949 \ file://sed/sed.h;beginline=1;endline=17;md5=767ab3a06d7584f6fd0469abaec4412f" SECTION = "console/utils" -PR = "r1" +PR = "r2" SRC_URI = "${GNU_MIRROR}/sed/sed-${PV}.tar.gz" @@ -17,6 +17,7 @@ do_install () { autotools_do_install install -d ${D}${base_bindir} mv ${D}${bindir}/sed ${D}${base_bindir}/sed.${PN} + rmdir ${D}${bindir}/ } ALTERNATIVE_NAME = "sed" |