diff options
author | Sven Wegener <swegener@gentoo.org> | 2005-07-10 21:39:26 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2005-07-10 21:39:26 +0000 |
commit | 67ea7150d720edd011ffecc8e5d3c4bc006af320 (patch) | |
tree | 54ab98896d5ab6d00290497d3af9d182be14c11b /app-crypt/cryptplug | |
parent | QA: Use die between || and the text; keepdir takes a list and we don't need t... (diff) | |
download | gentoo-2-67ea7150d720edd011ffecc8e5d3c4bc006af320.tar.gz gentoo-2-67ea7150d720edd011ffecc8e5d3c4bc006af320.tar.bz2 gentoo-2-67ea7150d720edd011ffecc8e5d3c4bc006af320.zip |
QA: Use die between || and the text.
(Portage version: 2.0.51.22-r1)
Diffstat (limited to 'app-crypt/cryptplug')
-rw-r--r-- | app-crypt/cryptplug/cryptplug-0.3.16-r1.ebuild | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app-crypt/cryptplug/cryptplug-0.3.16-r1.ebuild b/app-crypt/cryptplug/cryptplug-0.3.16-r1.ebuild index bee200d6268a..3d13671a4fc0 100644 --- a/app-crypt/cryptplug/cryptplug-0.3.16-r1.ebuild +++ b/app-crypt/cryptplug/cryptplug-0.3.16-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/cryptplug/cryptplug-0.3.16-r1.ebuild,v 1.11 2005/01/01 12:28:16 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/cryptplug/cryptplug-0.3.16-r1.ebuild,v 1.12 2005/07/10 21:39:26 swegener Exp $ inherit eutils @@ -29,8 +29,8 @@ src_unpack() { src_compile() { export GPGME_CONFIG=${ROOT}/usr/bin/gpgme3-config - econf || "configure failed" - emake || "make failed" + econf || die "configure failed" + emake || die "make failed" } src_install() { |