diff options
author | Thomas Kahle <tomka@gentoo.org> | 2012-11-02 22:54:57 +0000 |
---|---|---|
committer | Thomas Kahle <tomka@gentoo.org> | 2012-11-02 22:54:57 +0000 |
commit | 30b361fcd6f647aed43d201db60469c6a13800a5 (patch) | |
tree | c689d57ebf82aa7e885b29a8c8aa2043335649e9 /net-mail/mu | |
parent | Drop ld sysroot patch since upstream has merged a proper fix. (diff) | |
download | gentoo-2-30b361fcd6f647aed43d201db60469c6a13800a5.tar.gz gentoo-2-30b361fcd6f647aed43d201db60469c6a13800a5.tar.bz2 gentoo-2-30b361fcd6f647aed43d201db60469c6a13800a5.zip |
Fix subshell/die
(Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 0x89DEB219565C32BC)
Diffstat (limited to 'net-mail/mu')
-rw-r--r-- | net-mail/mu/ChangeLog | 5 | ||||
-rw-r--r-- | net-mail/mu/mu-0.9.9.ebuild | 6 |
2 files changed, 8 insertions, 3 deletions
diff --git a/net-mail/mu/ChangeLog b/net-mail/mu/ChangeLog index 7d28aef91380..edfdd87ffb8b 100644 --- a/net-mail/mu/ChangeLog +++ b/net-mail/mu/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-mail/mu # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/mu/ChangeLog,v 1.11 2012/11/02 22:06:36 tomka Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/mu/ChangeLog,v 1.12 2012/11/02 22:54:57 tomka Exp $ + + 02 Nov 2012; Thomas Kahle <tomka@gentoo.org> mu-0.9.9.ebuild: + Fix subshell/die *mu-0.9.9 (02 Nov 2012) diff --git a/net-mail/mu/mu-0.9.9.ebuild b/net-mail/mu/mu-0.9.9.ebuild index 2f070c325812..477bf202b7d1 100644 --- a/net-mail/mu/mu-0.9.9.ebuild +++ b/net-mail/mu/mu-0.9.9.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/mu/mu-0.9.9.ebuild,v 1.1 2012/11/02 22:06:36 tomka Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/mu/mu-0.9.9.ebuild,v 1.2 2012/11/02 22:54:57 tomka Exp $ EAPI=4 @@ -32,7 +32,9 @@ SITEFILE="70mu-gentoo.el" src_unpack() { unpack ${P}.tar.gz - use doc && cp "${DISTDIR}"/mu4e-manual-${PV}.pdf "${S}" || die + if use doc ; then + cp "${DISTDIR}"/mu4e-manual-${PV}.pdf "${S}" || die + fi } src_configure() { |