From 8232e014379dcb51938b5328c30630997da05f38 Mon Sep 17 00:00:00 2001 From: Dongxiao Xu Date: Wed, 1 Sep 2010 11:16:05 +0800 Subject: sed: Inherit update-altenatives to handle the install priority This method is simple and preferred by poky Signed-off-by: Dongxiao Xu --- meta/recipes-extended/sed/sed_4.1.2.bb | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) (limited to 'meta/recipes-extended/sed') diff --git a/meta/recipes-extended/sed/sed_4.1.2.bb b/meta/recipes-extended/sed/sed_4.1.2.bb index 09bd3e18cc..e243f3e25f 100644 --- a/meta/recipes-extended/sed/sed_4.1.2.bb +++ b/meta/recipes-extended/sed/sed_4.1.2.bb @@ -4,14 +4,14 @@ LICENSE = "GPLv2+" LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \ file://sed/sed.h;beginline=1;endline=17;md5=e00ffd1837f298439a214fd197f6a407" SECTION = "console/utils" -PR = "r3" +PR = "r4" DEPENDS = "gettext" SRC_URI = "${GNU_MIRROR}/sed/sed-${PV}.tar.gz \ file://fix_return_type.patch" -inherit autotools +inherit autotools update-alternatives do_install () { autotools_do_install @@ -19,14 +19,8 @@ do_install () { mv ${D}${bindir}/sed ${D}${base_bindir}/sed.${PN} } - -pkg_postinst_${PN} () { - update-alternatives --install ${base_bindir}/sed sed sed.${PN} 100 -} - - -pkg_prerm_${PN} () { - update-alternatives --remove sed sed.${PN} -} +ALTERNATIVE_NAME = "sed" +ALTERNATIVE_PATH = "sed.${PN}" +ALTERNATIVE_PRIORITY = "100" BBCLASSEXTEND = "native" -- cgit v1.2.3-54-g00ecf