diff options
author | Jakub Moc <jakub@gentoo.org> | 2007-10-20 18:54:33 +0000 |
---|---|---|
committer | Jakub Moc <jakub@gentoo.org> | 2007-10-20 18:54:33 +0000 |
commit | 2caee323bff8139f9e69bcd07a4238c1b6e20ebc (patch) | |
tree | 317e2b457ce8277000f6b7d5bcdf67982c36d165 /net-mail/checkgmail/checkgmail-1.12.ebuild | |
parent | doins -> exeinto + dobin (diff) | |
download | sunrise-2caee323bff8139f9e69bcd07a4238c1b6e20ebc.tar.gz sunrise-2caee323bff8139f9e69bcd07a4238c1b6e20ebc.tar.bz2 sunrise-2caee323bff8139f9e69bcd07a4238c1b6e20ebc.zip |
net-mail/checkgmail: Fix die message
svn path=/sunrise/; revision=4811
Diffstat (limited to 'net-mail/checkgmail/checkgmail-1.12.ebuild')
-rw-r--r-- | net-mail/checkgmail/checkgmail-1.12.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net-mail/checkgmail/checkgmail-1.12.ebuild b/net-mail/checkgmail/checkgmail-1.12.ebuild index 500f54719..8f7420f91 100644 --- a/net-mail/checkgmail/checkgmail-1.12.ebuild +++ b/net-mail/checkgmail/checkgmail-1.12.ebuild @@ -26,9 +26,9 @@ RDEPEND="${DEPEND}" pkg_setup() { if ! built_with_use dev-lang/perl ithreads ; then - eerror "Please (re)emerge perl with the ithreads USE flag on before " - eerror "emerging checkgmail" - die "please (re)emerge net-mail/checkgmail with USE='ithreads'" + local msg="Please (re)emerge dev-lang/perl with the ithreads USE flag on" + eerror "${msg}" + die "${msg}" fi } |