diff options
author | Martin Jansa <Martin.Jansa@gmail.com> | 2011-11-10 16:03:26 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-15 11:54:44 +0000 |
commit | 14bc68b03e65a9236a1c0d16403371d4ef742588 (patch) | |
tree | 85675035230921723799629463ccdd5a4f44fee4 /meta/recipes-core | |
parent | ecebc85df3714f49a6f196655b83a3fde65167ec (diff) | |
download | openembedded-core-14bc68b03e65a9236a1c0d16403371d4ef742588.tar.gz openembedded-core-14bc68b03e65a9236a1c0d16403371d4ef742588.tar.bz2 openembedded-core-14bc68b03e65a9236a1c0d16403371d4ef742588.zip |
util-linux: add missing u-a calls for setsid chrt
* someone added them to usrbinprogs_a, but without u-a calls added
* similar problem is with chfn chsh newgrp, but those are not built in
current version
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta/recipes-core')
-rw-r--r-- | meta/recipes-core/util-linux/util-linux.inc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/meta/recipes-core/util-linux/util-linux.inc b/meta/recipes-core/util-linux/util-linux.inc index 3b807360f4..855a54572c 100644 --- a/meta/recipes-core/util-linux/util-linux.inc +++ b/meta/recipes-core/util-linux/util-linux.inc @@ -191,6 +191,8 @@ pkg_postinst_${PN} () { update-alternatives --install ${bindir}/mesg mesg mesg.${PN} 100 update-alternatives --install ${bindir}/renice renice renice.${PN} 100 update-alternatives --install ${bindir}/wall wall wall.${PN} 100 + update-alternatives --install ${bindir}/setsid setsid setsid.${PN} 100 + update-alternatives --install ${bindir}/chrt chrt chrt.${PN} 100 update-alternatives --install ${bindir}/flock flock flock.${PN} 100 # There seems to be problem, atleast on nslu2, with these, untill they are @@ -221,6 +223,8 @@ pkg_prerm_${PN} () { update-alternatives --remove mesg mesg.${PN} update-alternatives --remove renice renice.${PN} update-alternatives --remove wall wall.${PN} + update-alternatives --remove setsid setsid.${PN} + update-alternatives --remove chrt chrt.${PN} update-alternatives --remove flock flock.${PN} } |