From: Zac Medico Date: Sun, 25 Jan 2009 01:27:30 +0000 (-0000) Subject: Fix die() usage in ebuild phase examples. Thanks to Jeremy Olexa X-Git-Tag: v2.2_rc24~241 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=5b1d653ae0f85814b3c633f2579608646ac5122e;p=portage.git Fix die() usage in ebuild phase examples. Thanks to Jeremy Olexa for this patch. svn path=/main/trunk/; revision=12556 --- diff --git a/man/ebuild.5 b/man/ebuild.5 index 0c5a07e28..a98f6e36e 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"