From: Phil Blundell Date: Sat, 2 Aug 2008 08:53:25 +0000 (+0000) Subject: lrzsz: straighten out alternatives, patch from martyn.welch@gefanuc.com X-Git-Tag: Release-2010-05/1~6396^2 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=51736105a6c9705469589743ab05444cbd3c16f0;p=openembedded.git lrzsz: straighten out alternatives, patch from martyn.welch@gefanuc.com --- diff --git a/packages/lrzsz/lrzsz_0.12.20.bb b/packages/lrzsz/lrzsz_0.12.20.bb index 0a194f9a05..b44945e35f 100644 --- a/packages/lrzsz/lrzsz_0.12.20.bb +++ b/packages/lrzsz/lrzsz_0.12.20.bb @@ -3,7 +3,7 @@ SECTION = "console/network" PRIORITY = "standard" DESCRIPTION = "Tools for zmodem/xmodem/ymodem file transfer" DEPENDS = "" -PR = "r3" +PR = "r4" SRC_URI = "http://www.ohse.de/uwe/releases/lrzsz-${PV}.tar.gz \ file://autotools.patch;patch=1 \ @@ -18,13 +18,19 @@ do_install() { } pkg_postinst() { - for util in rz rx rb sz sx sb; do + for util in rz rx rb; do update-alternatives --install ${bindir}/$util $util lrz 100 done + for util in sz sx sb; do + update-alternatives --install ${bindir}/$util $util lsz 100 + done } pkg_postrm() { - for util in rz rx rb sz sx sb; do + for util in rz rx rb; do update-alternatives --remove $util ${bindir}/lrz done + for util in sz sx sb; do + update-alternatives --remove $util ${bindir}/lsz + done } \ No newline at end of file