diff options
author | 2006-09-13 15:26:24 +0000 | |
---|---|---|
committer | 2006-09-13 15:26:24 +0000 | |
commit | 89e280dc10003993f15f12e07e751956afedd1da (patch) | |
tree | cc11b84cbe621b553d1a438fa77ea7b0307058bb /net-dns/bind/bind-9.2.6-r3.ebuild | |
parent | Security-wise cleanup. See bug #140514. (diff) | |
download | historical-89e280dc10003993f15f12e07e751956afedd1da.tar.gz historical-89e280dc10003993f15f12e07e751956afedd1da.tar.bz2 historical-89e280dc10003993f15f12e07e751956afedd1da.zip |
Use -j1 unconditionally since the Makefiles aren't parallel safe. Checking
for distcc in FEATURES is bogus.
Package-Manager: portage-2.1.1
Diffstat (limited to 'net-dns/bind/bind-9.2.6-r3.ebuild')
-rw-r--r-- | net-dns/bind/bind-9.2.6-r3.ebuild | 14 |
1 files changed, 2 insertions, 12 deletions
diff --git a/net-dns/bind/bind-9.2.6-r3.ebuild b/net-dns/bind/bind-9.2.6-r3.ebuild index c7bc8680cc3a..04df82d09876 100644 --- a/net-dns/bind/bind-9.2.6-r3.ebuild +++ b/net-dns/bind/bind-9.2.6-r3.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.2.6-r3.ebuild,v 1.1 2006/07/30 22:37:14 voxus Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/bind/bind-9.2.6-r3.ebuild,v 1.2 2006/09/13 15:26:24 agriffis Exp $ inherit eutils libtool autotools @@ -133,17 +133,7 @@ src_compile() { --with-libtool \ ${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\"" - jobs="-j1" - else - einfo "build with MAKEOPTS=${MAKEOPTS}" - jobs="" - fi - - emake ${jobs} || die "failed to compile bind" + emake -j1 || die "failed to compile bind" if use idn; then cd ${S}/contrib/idn/idnkit-1.0-src |