diff options
author | Saul Wold <sgw@linux.intel.com> | 2012-03-16 16:13:10 -0700 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-03-19 13:36:52 +0000 |
commit | 278e840e15c09719765edcc57351427fa704968b (patch) | |
tree | a93c265810f7a7a5a0baebe01078e2b03db2ed58 /meta/recipes-extended/mktemp | |
parent | 9ba01c3b7ce3d9f822e1cc08cd032e019a15180f (diff) | |
download | openembedded-core-278e840e15c09719765edcc57351427fa704968b.tar.gz openembedded-core-278e840e15c09719765edcc57351427fa704968b.tar.bz2 openembedded-core-278e840e15c09719765edcc57351427fa704968b.zip |
mktemp: fix packaging warnings
WARNING: For recipe mktemp, the following files/directories were installed but not shipped in any package:
WARNING: /usr/bin
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'meta/recipes-extended/mktemp')
-rw-r--r-- | meta/recipes-extended/mktemp/mktemp_1.7.bb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/meta/recipes-extended/mktemp/mktemp_1.7.bb b/meta/recipes-extended/mktemp/mktemp_1.7.bb index 65f542ef00..17b0c6f131 100644 --- a/meta/recipes-extended/mktemp/mktemp_1.7.bb +++ b/meta/recipes-extended/mktemp/mktemp_1.7.bb @@ -5,7 +5,7 @@ SECTION = "console/utils" LICENSE = "ISC" LIC_FILES_CHKSUM = "file://LICENSE;md5=430680f6322a1eb87199b5e01a82c0d4" -PR = "r1" +PR = "r2" SRC_URI = "ftp://ftp.mktemp.org/pub/mktemp/${BPN}-${PV}.tar.gz \ file://disable-strip.patch \ @@ -22,6 +22,7 @@ EXTRA_OECONF = "--with-libc" do_install_append () { mkdir ${D}${base_bindir} mv ${D}${bindir}/mktemp ${D}${base_bindir}/mktemp.${PN} + rmdir ${D}${bindir} } ALTERNATIVE_NAME = "mktemp" |