diff options
author | 2006-11-15 23:37:42 +0000 | |
---|---|---|
committer | 2006-11-15 23:37:42 +0000 | |
commit | f984f29910b22c4d2c81a06e5821edcf3835ebc0 (patch) | |
tree | 755cec723748418a4aaa9e15b2e29497531bb1b0 /sys-apps | |
parent | Initial commit. Thanks go to nephros for bringing this tool to our attention. (diff) | |
download | gentoo-2-f984f29910b22c4d2c81a06e5821edcf3835ebc0.tar.gz gentoo-2-f984f29910b22c4d2c81a06e5821edcf3835ebc0.tar.bz2 gentoo-2-f984f29910b22c4d2c81a06e5821edcf3835ebc0.zip |
Added || die just in case.
(Portage version: 2.1.2_rc1-r7)
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/lsparisc/ChangeLog | 5 | ||||
-rw-r--r-- | sys-apps/lsparisc/lsparisc-0.2.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/sys-apps/lsparisc/ChangeLog b/sys-apps/lsparisc/ChangeLog index bf8244ac64ad..204b3381c8af 100644 --- a/sys-apps/lsparisc/ChangeLog +++ b/sys-apps/lsparisc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-apps/lsparisc # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/lsparisc/ChangeLog,v 1.1 2006/11/15 23:31:07 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/lsparisc/ChangeLog,v 1.2 2006/11/15 23:37:42 jer Exp $ + + 15 Nov 2006; Jeroen Roovers <jer@gentoo.org> lsparisc-0.2.ebuild: + Added || die just in case. *lsparisc-0.2 (15 Nov 2006) diff --git a/sys-apps/lsparisc/lsparisc-0.2.ebuild b/sys-apps/lsparisc/lsparisc-0.2.ebuild index 76e1465bf509..45452293a71b 100644 --- a/sys-apps/lsparisc/lsparisc-0.2.ebuild +++ b/sys-apps/lsparisc/lsparisc-0.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/lsparisc/lsparisc-0.2.ebuild,v 1.1 2006/11/15 23:31:07 jer Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/lsparisc/lsparisc-0.2.ebuild,v 1.2 2006/11/15 23:37:42 jer Exp $ DESCRIPTION="Like lspci but for PARISC devices" HOMEPAGE="http://packages.debian.org/unstable/utils/lsparisc" @@ -15,7 +15,7 @@ DEPEND="sys-fs/sysfsutils" RDEPEND="" src_install() { - dobin lsparisc - doman lsparisc.8 + dobin lsparisc || die "Installing lsparisc executable failed." + doman lsparisc.8 || die "Installing lsparisc man page failed." dodoc AUTHORS } |