Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-cdr/cdemu-daemon/
Date: Wed, 28 Aug 2019 08:15:45
Message-Id: 1566980136.d9b8bc4ce066be05ab3eab2d55357d343ef5c592.mgorny@gentoo
1 commit: d9b8bc4ce066be05ab3eab2d55357d343ef5c592
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 28 08:15:21 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 28 08:15:36 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9b8bc4c
7
8 app-cdr/cdemu-daemon: Fix MissingSlash
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 app-cdr/cdemu-daemon/cdemu-daemon-3.2.3.ebuild | 4 ++--
13 1 file changed, 2 insertions(+), 2 deletions(-)
14
15 diff --git a/app-cdr/cdemu-daemon/cdemu-daemon-3.2.3.ebuild b/app-cdr/cdemu-daemon/cdemu-daemon-3.2.3.ebuild
16 index 37f3d7278ba..622e8bbf40b 100644
17 --- a/app-cdr/cdemu-daemon/cdemu-daemon-3.2.3.ebuild
18 +++ b/app-cdr/cdemu-daemon/cdemu-daemon-3.2.3.ebuild
19 @@ -33,10 +33,10 @@ pkg_postinst() {
20 elog "To automatically load the vhba module at boot time, edit your"
21 elog "/etc/conf.d/modules file."
22
23 - if [[ -e "${ROOT}etc/conf.d/cdemud" ]]; then
24 + if [[ -e "${ROOT}/etc/conf.d/cdemud" ]]; then
25 elog
26 elog "${PN} no longer installs an init.d service; instead, it is"
27 elog "automatically activated when needed via dbus."
28 - elog "You can therefore remove ${ROOT%/}/etc/conf.d/cdemud"
29 + elog "You can therefore remove ${ROOT}/etc/conf.d/cdemud"
30 fi
31 }