diff options
-rw-r--r-- | sys-devel/patch/ChangeLog | 5 | ||||
-rw-r--r-- | sys-devel/patch/patch-2.6.1.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/sys-devel/patch/ChangeLog b/sys-devel/patch/ChangeLog index 9bdc98463447..a109bdd93131 100644 --- a/sys-devel/patch/ChangeLog +++ b/sys-devel/patch/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-devel/patch # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/patch/ChangeLog,v 1.53 2012/01/25 18:24:20 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/patch/ChangeLog,v 1.54 2012/01/25 18:25:49 ssuominen Exp $ + + 25 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> patch-2.6.1.ebuild: + tidy 25 Jan 2012; Samuli Suominen <ssuominen@gentoo.org> patch-2.6.1.ebuild: ppc64 stable wrt #387471 diff --git a/sys-devel/patch/patch-2.6.1.ebuild b/sys-devel/patch/patch-2.6.1.ebuild index 7968a547901c..7b173b22887c 100644 --- a/sys-devel/patch/patch-2.6.1.ebuild +++ b/sys-devel/patch/patch-2.6.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-devel/patch/patch-2.6.1.ebuild,v 1.10 2012/01/25 18:24:20 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-devel/patch/patch-2.6.1.ebuild,v 1.11 2012/01/25 18:25:49 ssuominen Exp $ inherit flag-o-matic @@ -29,12 +29,12 @@ src_compile() { local myconf="" [[ ${USERLAND} != "GNU" ]] && myconf="--program-prefix=g" - econf ${myconf} || die + econf ${myconf} emake || die } src_install() { - emake install DESTDIR="${D}" || die + emake DESTDIR="${D}" install || die dodoc AUTHORS ChangeLog NEWS README } |