diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-09-28 01:59:54 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-09-28 01:59:54 +0000 |
commit | 42e9682a5c7ba752c9f57088b5a12830ee4fa73d (patch) | |
tree | cdbb82446a876578c869c2c3e2e75bd1703c28a7 /sys-apps | |
parent | Gentoo Technologies, Inc. -> Gentoo Foundation (diff) | |
download | gentoo-2-42e9682a5c7ba752c9f57088b5a12830ee4fa73d.tar.gz gentoo-2-42e9682a5c7ba752c9f57088b5a12830ee4fa73d.tar.bz2 gentoo-2-42e9682a5c7ba752c9f57088b5a12830ee4fa73d.zip |
call die if dobin fails
Diffstat (limited to 'sys-apps')
-rw-r--r-- | sys-apps/sed/sed-4.0.9.ebuild | 4 | ||||
-rw-r--r-- | sys-apps/sed/sed-4.1.2.ebuild | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/sys-apps/sed/sed-4.0.9.ebuild b/sys-apps/sed/sed-4.0.9.ebuild index 63ea0839f031..9f24251856a2 100644 --- a/sys-apps/sed/sed-4.0.9.ebuild +++ b/sys-apps/sed/sed-4.0.9.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/sed/sed-4.0.9.ebuild,v 1.22 2004/09/24 00:11:05 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/sed/sed-4.0.9.ebuild,v 1.23 2004/09/28 01:59:54 vapier Exp $ inherit gnuconfig flag-o-matic @@ -39,7 +39,7 @@ src_compile() { src_install() { into / - dobin sed/sed + dobin sed/sed || die "dobin" if ! use build then einstall || die "Install failed" diff --git a/sys-apps/sed/sed-4.1.2.ebuild b/sys-apps/sed/sed-4.1.2.ebuild index 4dc7d386712e..b8693961e8fe 100644 --- a/sys-apps/sed/sed-4.1.2.ebuild +++ b/sys-apps/sed/sed-4.1.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-apps/sed/sed-4.1.2.ebuild,v 1.1 2004/09/22 03:42:33 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-apps/sed/sed-4.1.2.ebuild,v 1.2 2004/09/28 01:59:54 vapier Exp $ inherit gnuconfig flag-o-matic @@ -39,7 +39,7 @@ src_compile() { src_install() { into / - dobin sed/sed + dobin sed/sed || die "dobin" if ! use build then einstall || die "Install failed" |