commit: d9b8bc4ce066be05ab3eab2d55357d343ef5c592
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 28 08:15:21 2019 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Aug 28 08:15:36 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9b8bc4c
app-cdr/cdemu-daemon: Fix MissingSlash
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
app-cdr/cdemu-daemon/cdemu-daemon-3.2.3.ebuild | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/app-cdr/cdemu-daemon/cdemu-daemon-3.2.3.ebuild
b/app-cdr/cdemu-daemon/cdemu-daemon-3.2.3.ebuild
index 37f3d7278ba..622e8bbf40b 100644
--- a/app-cdr/cdemu-daemon/cdemu-daemon-3.2.3.ebuild
+++ b/app-cdr/cdemu-daemon/cdemu-daemon-3.2.3.ebuild
@@ -33,10 +33,10 @@ pkg_postinst() {
elog "To automatically load the vhba module at boot time, edit your"
elog "/etc/conf.d/modules file."
- if [[ -e "${ROOT}etc/conf.d/cdemud" ]]; then
+ if [[ -e "${ROOT}/etc/conf.d/cdemud" ]]; then
elog
elog "${PN} no longer installs an init.d service; instead, it
is"
elog "automatically activated when needed via dbus."
- elog "You can therefore remove ${ROOT%/}/etc/conf.d/cdemud"
+ elog "You can therefore remove ${ROOT}/etc/conf.d/cdemud"
fi
}