From: Zac Medico Date: Wed, 11 Mar 2009 03:26:55 +0000 (-0000) Subject: Fix die() usage in ebuild phase examples. Thanks to Jeremy Olexa X-Git-Tag: v2.1.6.8~235 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f8dc250a08d8d6843a32c087ea0e6563b62f68b0;p=portage.git Fix die() usage in ebuild phase examples. Thanks to Jeremy Olexa for this patch. (trunk r12556) svn path=/main/branches/2.1.6/; revision=12842 --- diff --git a/man/ebuild.5 b/man/ebuild.5 index bf44de70e..9cb497694 100644 --- a/man/ebuild.5 +++ b/man/ebuild.5 @@ -23,7 +23,7 @@ inherit some_eclass another_eclass DESCRIPTION="Super\-useful stream editor (sed)" HOMEPAGE="http://www.gnu.org/software/sed/sed.html" -SRC_URI="ftp://alpha.gnu.org/pub/gnu/sed/${P}.tar.gz" +SRC_URI="ftp://alpha.gnu.org/pub/gnu/${PN}/${P}.tar.gz" LICENSE="GPL\-2" SLOT="0" @@ -35,14 +35,13 @@ DEPEND="nls? ( sys-devel/gettext )" src_compile() { econf \\ - \-\-bindir=/bin \\ - || die "could not configure" + \-\-bindir=/bin emake || die "emake failed" } src_install() { emake install DESTDIR="${D}" || die "Install failed" - dodoc NEWS README* THANKS AUTHORS BUGS ChangeLog + dodoc NEWS README* THANKS AUTHORS BUGS ChangeLog || die "dodoc failed" } .fi .SH "VARIABLES"