diff options
author | Martyn Welch <martyn.welch@ge.com> | 2010-03-11 05:41:03 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2010-03-11 16:58:14 +0100 |
commit | 964958b0b126c38b1ce81e653c5f7d3eafcce023 (patch) | |
tree | ace9b8caaffcc525496150bb87e30fdfe418363a | |
parent | d25468cd60dae85af234ebd998eb3626893949bd (diff) |
util-linux-ng: Correct vi error
Commit bbd436a98df5d4a439e519651c38fb48d81e5a78 appears to have added a via
error to "pkg_prerm_${PN}":
- update-alternatives --remove pivot_root pivot_root.${PN}
+ update-alternatives --remove pivot_root pivot_root.${PN}i
Signed-off-by: Martyn Welch <martyn.welch@ge.com>
Signed-off-by: Koen Kooi <koen@openembedded.org>
-rw-r--r-- | recipes/util-linux-ng/util-linux-ng.inc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/recipes/util-linux-ng/util-linux-ng.inc b/recipes/util-linux-ng/util-linux-ng.inc index 3073cfe134..1c6e8a89e0 100644 --- a/recipes/util-linux-ng/util-linux-ng.inc +++ b/recipes/util-linux-ng/util-linux-ng.inc @@ -7,7 +7,7 @@ inherit autotools DEFAULT_PREFERENCE = "-1" -INC_PR = "r15" +INC_PR = "r16" # allows for a release candidate RC ?= "" @@ -211,7 +211,7 @@ pkg_postinst_${PN} () { pkg_prerm_${PN} () { test -x ${base_sbindir}/pivot_root.${PN} && \ - update-alternatives --remove pivot_root pivot_root.${PN}i + update-alternatives --remove pivot_root pivot_root.${PN} for i in dmesg kill more halt hwclock mkswap reboot shutdown sln mkfs.minix fsck.minix hecdump last logger mesg renice wall vipw vigr chfn newgrp chsh login ; do update-alternatives --remove $i $i.${PN} |