* [PATCH] tar: Fix unpackaged files warnings
@ 2012-03-16 15:22 Richard Purdie
0 siblings, 0 replies; only message in thread
From: Richard Purdie @ 2012-03-16 15:22 UTC (permalink / raw)
To: openembedded-core
WARNING: For recipe tar, the following files/directories were installed but not shipped in any package:
WARNING: /usr/sbin
WARNING: /usr/bin
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
---
diff --git a/meta/recipes-extended/tar/tar.inc b/meta/recipes-extended/tar/tar.inc
index 6e77051..0533b82 100644
--- a/meta/recipes-extended/tar/tar.inc
+++ b/meta/recipes-extended/tar/tar.inc
@@ -12,12 +12,14 @@ EXTRAINSTALL = "do_install_extra"
do_install () {
autotools_do_install
- install -d ${D}${base_bindir}
${EXTRAINSTALL}
}
do_install_extra () {
+ install -d ${D}${base_bindir}
mv ${D}${bindir}/tar ${D}${base_bindir}/tar.${PN}
+ rmdir ${D}${bindir}/
+ rmdir ${D}${sbindir}/
mv ${D}${libexecdir}/rmt ${D}${libexecdir}/rmt.${PN}
}
diff --git a/meta/recipes-extended/tar/tar_1.26.bb b/meta/recipes-extended/tar/tar_1.26.bb
index 26fdc4a..e679ccb 100644
--- a/meta/recipes-extended/tar/tar_1.26.bb
+++ b/meta/recipes-extended/tar/tar_1.26.bb
@@ -3,7 +3,7 @@ require tar.inc
LICENSE = "GPLv3"
LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
-PR = "r0"
+PR = "r1"
SRC_URI[md5sum] = "2cee42a2ff4f1cd4f9298eeeb2264519"
SRC_URI[sha256sum] = "5a5369f464502a598e938029c310d4b3abd51e6bb8dfd045663e61c8ea9f6d41"
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2012-03-16 15:31 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-03-16 15:22 [PATCH] tar: Fix unpackaged files warnings Richard Purdie
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox