diff options
author | 2007-06-17 19:41:28 +0000 | |
---|---|---|
committer | 2007-06-17 19:41:28 +0000 | |
commit | 1e7e134bf61b24c29e0e02d27c3fb66d3639c467 (patch) | |
tree | fa806f3dc06997d7dbbb4281436f53a87d6cb249 /net-mail/mailbase/mailbase-1.ebuild | |
parent | Stable on amd64 wrt bug 180795 (diff) | |
download | gentoo-2-1e7e134bf61b24c29e0e02d27c3fb66d3639c467.tar.gz gentoo-2-1e7e134bf61b24c29e0e02d27c3fb66d3639c467.tar.bz2 gentoo-2-1e7e134bf61b24c29e0e02d27c3fb66d3639c467.zip |
Don't mix ewarn and echo as per bug #182348
(Portage version: 2.1.2.7)
Diffstat (limited to 'net-mail/mailbase/mailbase-1.ebuild')
-rw-r--r-- | net-mail/mailbase/mailbase-1.ebuild | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/net-mail/mailbase/mailbase-1.ebuild b/net-mail/mailbase/mailbase-1.ebuild index c33677258f48..46895179154f 100644 --- a/net-mail/mailbase/mailbase-1.ebuild +++ b/net-mail/mailbase/mailbase-1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/mailbase/mailbase-1.ebuild,v 1.17 2007/02/08 22:22:25 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/mailbase/mailbase-1.ebuild,v 1.18 2007/06/17 19:41:28 ferdy Exp $ DESCRIPTION="MTA layout package" SRC_URI="" @@ -56,12 +56,11 @@ src_install() { pkg_postinst() { if [[ "$(get_permissions_oct /var/spool/mail)" != "775" ]] ; then echo - ewarn ewarn "Your ${ROOT}/var/spool/mail/ directory permissions differ from" ewarn " those which mailbase set when you first installed it (0775)." ewarn " If you did not change them on purpose, consider running:" ewarn - echo -e "\tchmod 0775 ${ROOT}/var/spool/mail/" + ewarn " chmod 0775 ${ROOT}/var/spool/mail/" echo fi } |