diff options
author | Torsten Veller <tove@gentoo.org> | 2008-06-29 08:15:52 +0000 |
---|---|---|
committer | Torsten Veller <tove@gentoo.org> | 2008-06-29 08:15:52 +0000 |
commit | 03f5747c5d165ff7b963698caa998757fa17e4d4 (patch) | |
tree | 5667533757473db6178ed861fbdae8eff21e0c32 /sci-electronics/gnucap | |
parent | Add missing die: || "..." -> || die "..." (diff) | |
download | gentoo-2-03f5747c5d165ff7b963698caa998757fa17e4d4.tar.gz gentoo-2-03f5747c5d165ff7b963698caa998757fa17e4d4.tar.bz2 gentoo-2-03f5747c5d165ff7b963698caa998757fa17e4d4.zip |
Add missing die: || "..." -> || die "..."
(Portage version: 2.2_rc1/cvs/Linux 2.6.24-tuxonice-r9 i686)
Diffstat (limited to 'sci-electronics/gnucap')
-rw-r--r-- | sci-electronics/gnucap/gnucap-0.35.20070221.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sci-electronics/gnucap/gnucap-0.35.20070221.ebuild b/sci-electronics/gnucap/gnucap-0.35.20070221.ebuild index 340674e3d27e..19089636f4c6 100644 --- a/sci-electronics/gnucap/gnucap-0.35.20070221.ebuild +++ b/sci-electronics/gnucap/gnucap-0.35.20070221.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-electronics/gnucap/gnucap-0.35.20070221.ebuild,v 1.3 2008/05/13 07:17:17 calchan Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-electronics/gnucap/gnucap-0.35.20070221.ebuild,v 1.4 2008/06/29 08:15:52 tove Exp $ inherit multilib @@ -57,7 +57,7 @@ src_compile () { cd "${S}"/plugins for PLUGIN_DIR in * ; do cd "${S}"/plugins/${PLUGIN_DIR} - emake || "Compilation failed" + emake || die "Compilation failed" done } |