diff options
author | Bernard Cafarelli <voyageur@gentoo.org> | 2012-06-18 15:17:36 +0000 |
---|---|---|
committer | Bernard Cafarelli <voyageur@gentoo.org> | 2012-06-18 15:17:36 +0000 |
commit | 027e468edb94d732b0e94504525a7fba57fe5926 (patch) | |
tree | 0b49730a0e333f58695c55f72b521624182e6bb1 /net-misc/nxcl/nxcl-0.9-r2.ebuild | |
parent | Keyword ~amd64 (diff) | |
download | gentoo-2-027e468edb94d732b0e94504525a7fba57fe5926.tar.gz gentoo-2-027e468edb94d732b0e94504525a7fba57fe5926.tar.bz2 gentoo-2-027e468edb94d732b0e94504525a7fba57fe5926.zip |
Fix compilation with GCC 4.7, bug #421731
(Portage version: 2.2.0_alpha110/cvs/Linux x86_64)
Diffstat (limited to 'net-misc/nxcl/nxcl-0.9-r2.ebuild')
-rw-r--r-- | net-misc/nxcl/nxcl-0.9-r2.ebuild | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/net-misc/nxcl/nxcl-0.9-r2.ebuild b/net-misc/nxcl/nxcl-0.9-r2.ebuild index 133a303fbed6..e8bca865eec9 100644 --- a/net-misc/nxcl/nxcl-0.9-r2.ebuild +++ b/net-misc/nxcl/nxcl-0.9-r2.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/nxcl/nxcl-0.9-r2.ebuild,v 1.2 2012/05/21 19:14:40 xarthisius Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/nxcl/nxcl-0.9-r2.ebuild,v 1.3 2012/06/18 15:17:36 voyageur Exp $ -EAPI=2 +EAPI=4 inherit autotools eutils @@ -34,13 +34,14 @@ src_prepare() { epatch "${FILESDIR}"/${P}-no_nxssh.patch fi epatch "${FILESDIR}"/${P}-gcc43.patch + epatch "${FILESDIR}"/${P}-gcc47.patch eautoreconf } src_configure() { - econf $(use_with doc doxygen) || die "configure failed" + econf $(use_with doc doxygen) } src_install() { - emake DESTDIR="${D}" install || die "install failed" + emake DESTDIR="${D}" install } |