diff options
author | Aron Griffis <agriffis@gentoo.org> | 2006-09-13 15:26:24 +0000 |
---|---|---|
committer | Aron Griffis <agriffis@gentoo.org> | 2006-09-13 15:26:24 +0000 |
commit | f1afded189fd1523acacaa3af1e644f4336b772c (patch) | |
tree | e5faf73466a32b0819907917fbbc62a7dd95c9a3 /net-dns/bind/bind-9.3.2.ebuild | |
parent | Security-wise cleanup. See bug #140514. (diff) | |
download | gentoo-2-f1afded189fd1523acacaa3af1e644f4336b772c.tar.gz gentoo-2-f1afded189fd1523acacaa3af1e644f4336b772c.tar.bz2 gentoo-2-f1afded189fd1523acacaa3af1e644f4336b772c.zip |
Use -j1 unconditionally since the Makefiles aren't parallel safe. Checking
for distcc in FEATURES is bogus.
(Portage version: 2.1.1)
Diffstat (limited to 'net-dns/bind/bind-9.3.2.ebuild')
-rw-r--r-- | net-dns/bind/bind-9.3.2.ebuild | 13 |
1 files changed, 2 insertions, 11 deletions
diff --git a/net-dns/bind/bind-9.3.2.ebuild b/net-dns/bind/bind-9.3.2.ebuild index fa86e1752e99..90c2100d1bbb 100644 --- a/net-dns/bind/bind-9.3.2.ebuild +++ b/net-dns/bind/bind-9.3.2.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/bind/bind-9.3.2.ebuild,v 1.12 2006/05/15 13:09:05 voxus Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/bind/bind-9.3.2.ebuild,v 1.13 2006/09/13 15:26:24 agriffis Exp $ inherit eutils libtool @@ -114,16 +114,7 @@ src_compile() { `use_enable ipv6` \ ${myconf} || die "econf failed" - # idea from dev-libs/cyrus-sasl - if has distcc ${FEATURES}; then - einfo "You have \"distcc\" enabled" - einfo "build with MAKEOPTS=\"-j1\"" - MAKEOPTS="-j1" - else - einfo "build with MAKEOPTS=${MAKEOPTS}" - fi - - emake ${MAKEOPTS} || die "failed to compile bind" + emake -j1 || die "failed to compile bind" use idn && { cd ${S}/contrib/idn/idnkit-1.0-src |