diff options
author | Torsten Veller <tove@gentoo.org> | 2008-06-29 09:58:55 +0000 |
---|---|---|
committer | Torsten Veller <tove@gentoo.org> | 2008-06-29 09:58:55 +0000 |
commit | a621b418b4e328f829726140473850c16791d6df (patch) | |
tree | c468cea1e287e08158785bada520dd1ad7c27e68 /net-nds/ldapvi | |
parent | Add missing die: || "..." -> || die "..." (diff) | |
download | historical-a621b418b4e328f829726140473850c16791d6df.tar.gz historical-a621b418b4e328f829726140473850c16791d6df.tar.bz2 historical-a621b418b4e328f829726140473850c16791d6df.zip |
Add missing die: || "..." -> || die "..."
Package-Manager: portage-2.2_rc1/cvs/Linux 2.6.24-tuxonice-r9 i686
Diffstat (limited to 'net-nds/ldapvi')
-rw-r--r-- | net-nds/ldapvi/ChangeLog | 5 | ||||
-rw-r--r-- | net-nds/ldapvi/ldapvi-1.7.ebuild | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/net-nds/ldapvi/ChangeLog b/net-nds/ldapvi/ChangeLog index acb3b2e3bc66..8e28bfa121fd 100644 --- a/net-nds/ldapvi/ChangeLog +++ b/net-nds/ldapvi/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-nds/ldapvi # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-nds/ldapvi/ChangeLog,v 1.19 2008/04/21 18:11:33 phreak Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-nds/ldapvi/ChangeLog,v 1.20 2008/06/29 09:58:55 tove Exp $ + + 29 Jun 2008; Torsten Veller <tove@gentoo.org> ldapvi-1.7.ebuild: + Add missing die: || "..." -> || die "..." 21 Apr 2008; Christian Heim <phreak@gentoo.org> metadata.xml: Fix up metadata.xml. If there's no maintainer for the package, the metadata diff --git a/net-nds/ldapvi/ldapvi-1.7.ebuild b/net-nds/ldapvi/ldapvi-1.7.ebuild index 4d40617caeda..24657d69a63c 100644 --- a/net-nds/ldapvi/ldapvi-1.7.ebuild +++ b/net-nds/ldapvi/ldapvi-1.7.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/net-nds/ldapvi/ldapvi-1.7.ebuild,v 1.4 2008/01/07 22:43:44 omp Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-nds/ldapvi/ldapvi-1.7.ebuild,v 1.5 2008/06/29 09:58:55 tove Exp $ inherit eutils @@ -27,6 +27,6 @@ src_compile() { } src_install() { - dobin ldapvi || "dobin failed" + dobin ldapvi || die "dobin failed" doman ldapvi.1 } |