From: Michał Górny Date: Wed, 28 Aug 2019 08:15:21 +0000 (+0200) Subject: app-cdr/cdemu-daemon: Fix MissingSlash X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=d9b8bc4ce066be05ab3eab2d55357d343ef5c592;p=gentoo.git app-cdr/cdemu-daemon: Fix MissingSlash Signed-off-by: Michał Górny --- 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 37f3d7278bab..622e8bbf40b8 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 }