diff options
author | Torsten Veller <tove@gentoo.org> | 2009-06-13 10:18:31 +0000 |
---|---|---|
committer | Torsten Veller <tove@gentoo.org> | 2009-06-13 10:18:31 +0000 |
commit | 18146ce0329aa6b2ba8d67840d32eded9b92afc3 (patch) | |
tree | 55adbe78159a8d2bd71d6f7dc4613dea8498eae5 /sci-chemistry | |
parent | ia64 stable wrt #271903 (diff) | |
download | gentoo-2-18146ce0329aa6b2ba8d67840d32eded9b92afc3.tar.gz gentoo-2-18146ce0329aa6b2ba8d67840d32eded9b92afc3.tar.bz2 gentoo-2-18146ce0329aa6b2ba8d67840d32eded9b92afc3.zip |
Add missing die: || "..." -> || die "..."
(Portage version: 2.2_rc33/cvs/Linux i686)
Diffstat (limited to 'sci-chemistry')
-rw-r--r-- | sci-chemistry/openbabel/ChangeLog | 5 | ||||
-rw-r--r-- | sci-chemistry/openbabel/openbabel-2.2.1.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/sci-chemistry/openbabel/ChangeLog b/sci-chemistry/openbabel/ChangeLog index e8444c60efc5..d839353e654b 100644 --- a/sci-chemistry/openbabel/ChangeLog +++ b/sci-chemistry/openbabel/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-chemistry/openbabel # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.24 2009/04/18 15:02:22 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/ChangeLog,v 1.25 2009/06/13 10:18:31 tove Exp $ + + 13 Jun 2009; Torsten Veller <tove@gentoo.org> openbabel-2.2.1.ebuild: + Add missing die: "..." -> die "..." 18 Apr 2009; Jeroen Roovers <jer@gentoo.org> openbabel-2.2.1: Marked ~hppa (bug #260777). diff --git a/sci-chemistry/openbabel/openbabel-2.2.1.ebuild b/sci-chemistry/openbabel/openbabel-2.2.1.ebuild index 6727f04f329f..088063379a53 100644 --- a/sci-chemistry/openbabel/openbabel-2.2.1.ebuild +++ b/sci-chemistry/openbabel/openbabel-2.2.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.1.ebuild,v 1.2 2009/04/18 15:02:22 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/openbabel/openbabel-2.2.1.ebuild,v 1.3 2009/06/13 10:18:31 tove Exp $ EAPI=1 @@ -36,7 +36,7 @@ src_compile() { || die "econf failed" emake || die "emake failed" if use doc ; then - emake docs || "make docs failed" + emake docs || die "make docs failed" fi } |