diff options
author | David Seifert <soap@gentoo.org> | 2019-08-11 13:20:07 +0200 |
---|---|---|
committer | David Seifert <soap@gentoo.org> | 2019-08-11 13:20:07 +0200 |
commit | 1bb0d0081c1134b102924c2b9056363d1da496cc (patch) | |
tree | b0d5b627cb297823ab5591b8c2570d0e9ab94c15 /net-mail | |
parent | net-libs/nodejs: [QA] Fix missing trailing slash (diff) | |
download | gentoo-1bb0d0081c1134b102924c2b9056363d1da496cc.tar.gz gentoo-1bb0d0081c1134b102924c2b9056363d1da496cc.tar.bz2 gentoo-1bb0d0081c1134b102924c2b9056363d1da496cc.zip |
net-mail/mailbase: [QA] Fix missing trailing slash
Package-Manager: Portage-2.3.71, Repoman-2.3.17
Signed-off-by: David Seifert <soap@gentoo.org>
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/mailbase/mailbase-1.4.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net-mail/mailbase/mailbase-1.4.ebuild b/net-mail/mailbase/mailbase-1.4.ebuild index 157b09c61051..30ec0e15153c 100644 --- a/net-mail/mailbase/mailbase-1.4.ebuild +++ b/net-mail/mailbase/mailbase-1.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -60,8 +60,8 @@ get_permissions_oct() { pkg_postinst() { # bug 614396 if [[ "$(get_permissions_oct /var/spool/mail)" != "3775" ]] ; then - einfo "Fixing ${ROOT}var/spool/mail/ permissions" - chown root:mail "${ROOT}var/spool/mail/" - chmod 03775 "${ROOT}var/spool/mail/" + einfo "Fixing ${ROOT}/var/spool/mail/ permissions" + chown root:mail "${ROOT}/var/spool/mail/" + chmod 03775 "${ROOT}/var/spool/mail/" fi } |