From: Dexuan Cui Date: Fri, 27 Aug 2010 08:36:58 +0000 (+0800) Subject: which (GPLv2): inherit update-alternatives X-Git-Tag: 2011-1~4698 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=d5bc20830d8c1551db7f3cbb1f3ae1aa07b0719a;p=openembedded-core.git which (GPLv2): inherit update-alternatives by this, we can avoid the pkg_postinst/postrm in the recipe file. Signed-off-by: Dexuan Cui --- diff --git a/meta/recipes-extended/which/which_2.18.bb b/meta/recipes-extended/which/which_2.18.bb index b177949788..7eeb320a75 100644 --- a/meta/recipes-extended/which/which_2.18.bb +++ b/meta/recipes-extended/which/which_2.18.bb @@ -8,14 +8,14 @@ BUGTRACKER = "n/a" LICENSE = "GPLv2+" LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" -PR = "r0" +PR = "r1" SRC_URI = "http://www.xs4all.nl/~carlo17/which/which-${PV}.tar.gz \ file://fix_name_conflict_group_member.patch" DEPENDS = "cwautomacros-native" -inherit autotools +inherit autotools update-alternatives do_configure_prepend() { OLD="@ACLOCAL_CWFLAGS@" @@ -26,15 +26,7 @@ do_install_append() { mv ${D}/${bindir}/which ${D}/${bindir}/which.${PN} } -pkg_postinst_${PN}() { - if [ "${PN}" = "${BPN}" ] ; then - update-alternatives --install ${bindir}/which which which.${PN} 100 - fi -} - -pkg_prerm_${PN}() { - if [ "${PN}" = "${BPN}" ] ; then - update-alternatives --remove which which.${PN} - fi -} +ALTERNATIVE_NAME = "which" +ALTERNATIVE_PATH = "which.${PN}" +ALTERNATIVE_PRIORITY = "100"