diff options
author | Torsten Veller <tove@gentoo.org> | 2008-06-29 08:13:40 +0000 |
---|---|---|
committer | Torsten Veller <tove@gentoo.org> | 2008-06-29 08:13:40 +0000 |
commit | ff492c1d5bcc26b7575a2e9a764f2cd2567e9328 (patch) | |
tree | 4e3f6c8daa89738e1df93267bf85358423e9c1bc /sci-libs/amd | |
parent | Add missing die: || "..." -> || die "..." (diff) | |
download | historical-ff492c1d5bcc26b7575a2e9a764f2cd2567e9328.tar.gz historical-ff492c1d5bcc26b7575a2e9a764f2cd2567e9328.tar.bz2 historical-ff492c1d5bcc26b7575a2e9a764f2cd2567e9328.zip |
Add missing die: || "..." -> || die "..."
Package-Manager: portage-2.2_rc1/cvs/Linux 2.6.24-tuxonice-r9 i686
Diffstat (limited to 'sci-libs/amd')
-rw-r--r-- | sci-libs/amd/ChangeLog | 6 | ||||
-rw-r--r-- | sci-libs/amd/amd-2.0.4.ebuild | 4 | ||||
-rw-r--r-- | sci-libs/amd/amd-2.2.0.ebuild | 8 |
3 files changed, 11 insertions, 7 deletions
diff --git a/sci-libs/amd/ChangeLog b/sci-libs/amd/ChangeLog index d8517d72c3cd..2d4fdc910e9a 100644 --- a/sci-libs/amd/ChangeLog +++ b/sci-libs/amd/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for sci-libs/amd # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-libs/amd/ChangeLog,v 1.9 2008/04/15 15:44:30 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/amd/ChangeLog,v 1.10 2008/06/29 08:13:40 tove Exp $ + + 29 Jun 2008; Torsten Veller <tove@gentoo.org> amd-2.0.4.ebuild, + amd-2.2.0.ebuild: + Add missing die: || "..." -> || die "..." 15 Apr 2008; Jeroen Roovers <jer@gentoo.org> amd-2.2.0.ebuild: Marked ~hppa (bug #215841). diff --git a/sci-libs/amd/amd-2.0.4.ebuild b/sci-libs/amd/amd-2.0.4.ebuild index 308cb86e417f..77350afdf132 100644 --- a/sci-libs/amd/amd-2.0.4.ebuild +++ b/sci-libs/amd/amd-2.0.4.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-libs/amd/amd-2.0.4.ebuild,v 1.2 2008/03/03 18:55:33 dsd Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/amd/amd-2.0.4.ebuild,v 1.3 2008/06/29 08:13:40 tove Exp $ inherit autotools eutils fortran @@ -29,7 +29,7 @@ src_unpack() { } src_install() { - emake DESTDIR="${D}" install || "emake install failed" + emake DESTDIR="${D}" install || die "emake install failed" dodoc README.txt Doc/ChangeLog if use doc; then insinto /usr/share/doc/${PF} diff --git a/sci-libs/amd/amd-2.2.0.ebuild b/sci-libs/amd/amd-2.2.0.ebuild index 116ff59b149d..d9b005174b9c 100644 --- a/sci-libs/amd/amd-2.2.0.ebuild +++ b/sci-libs/amd/amd-2.2.0.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-libs/amd/amd-2.2.0.ebuild,v 1.8 2008/04/15 15:44:30 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/amd/amd-2.2.0.ebuild,v 1.9 2008/06/29 08:13:40 tove Exp $ inherit autotools eutils fortran @@ -28,10 +28,10 @@ src_unpack() { } src_install() { - emake DESTDIR="${D}" install || "emake install failed" - dodoc README.txt Doc/ChangeLog || "dodoc failed" + emake DESTDIR="${D}" install || die "emake install failed" + dodoc README.txt Doc/ChangeLog || die "dodoc failed" if use doc; then insinto /usr/share/doc/${PF} - doins Doc/AMD_UserGuide.pdf || "doc install failed" + doins Doc/AMD_UserGuide.pdf || die "doc install failed" fi } |