summaryrefslogtreecommitdiff
path: root/meta/recipes-extended/findutils/findutils_4.4.2.bb
diff options
context:
space:
mode:
authorMark Hatle <mark.hatle@windriver.com>2012-04-16 11:04:50 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-04-24 15:51:33 +0100
commitbe2dbd1abfb4e0e6989d1c34c09047e439d8194e (patch)
treee0d9c629d57f50ebe321ed2d5c60d91603908c1e /meta/recipes-extended/findutils/findutils_4.4.2.bb
parentcb27e78bfc059d6878dcda8b7a27a078f7a871e4 (diff)
downloadopenembedded-core-be2dbd1abfb4e0e6989d1c34c09047e439d8194e.tar.gz
openembedded-core-be2dbd1abfb4e0e6989d1c34c09047e439d8194e.tar.bz2
openembedded-core-be2dbd1abfb4e0e6989d1c34c09047e439d8194e.tar.xz
openembedded-core-be2dbd1abfb4e0e6989d1c34c09047e439d8194e.zip
findutils: Use update-alternatives
Change to using update-alternatives to ensure that we're consistently using the class, and the package provides are being setup properly. Signed-off-by: Mark Hatle <mark.hatle@windriver.com>
Diffstat (limited to 'meta/recipes-extended/findutils/findutils_4.4.2.bb')
-rw-r--r--meta/recipes-extended/findutils/findutils_4.4.2.bb17
1 files changed, 1 insertions, 16 deletions
diff --git a/meta/recipes-extended/findutils/findutils_4.4.2.bb b/meta/recipes-extended/findutils/findutils_4.4.2.bb
index b2898ed5d..d80511c4d 100644
--- a/meta/recipes-extended/findutils/findutils_4.4.2.bb
+++ b/meta/recipes-extended/findutils/findutils_4.4.2.bb
@@ -1,6 +1,6 @@
require findutils.inc
-PR = "r2"
+PR = "r3"
SRC_URI += "file://01-27017.patch \
file://02-28824.patch \
@@ -13,19 +13,4 @@ SRC_URI[sha256sum] = "434f32d171cbc0a5e72cfc5372c6fc4cb0e681f8dce566a0de5b6fccd7
# http://savannah.gnu.org/bugs/?27299
CACHED_CONFIGUREVARS += "${@base_contains('DISTRO_FEATURES', 'libc-posix-clang-wchar', 'gl_cv_func_wcwidth_works=yes', '', d)}"
-do_install_append () {
- if [ -e ${D}${bindir}/find ]; then
- mv ${D}${bindir}/find ${D}${bindir}/find.${PN}
- mv ${D}${bindir}/xargs ${D}${bindir}/xargs.${PN}
- fi
-}
-
-pkg_postinst_${PN} () {
- for i in find xargs; do update-alternatives --install ${bindir}/$i $i $i.${PN} 100; done
-}
-
-pkg_prerm_${PN} () {
- for i in find xargs; do update-alternatives --remove $i $i.${PN}; done
-}
-
BBCLASSEXTEND = "native"