diff options
author | Alin Năstac <mrness@gentoo.org> | 2005-02-12 07:52:04 +0000 |
---|---|---|
committer | Alin Năstac <mrness@gentoo.org> | 2005-02-12 07:52:04 +0000 |
commit | 441b286db811c3979ddbb601052c46050fc7ee01 (patch) | |
tree | 07b1d97337219f8855df520d82d283bab4e05f67 /net-dialup/ppp | |
parent | Fixed missing oss header file when using installed sdk (xmms-1.2.10-r13 and l... (diff) | |
download | gentoo-2-441b286db811c3979ddbb601052c46050fc7ee01.tar.gz gentoo-2-441b286db811c3979ddbb601052c46050fc7ee01.tar.bz2 gentoo-2-441b286db811c3979ddbb601052c46050fc7ee01.zip |
force make -j1 for radiusclient (#81544)
(Portage version: 2.0.51-r15)
Diffstat (limited to 'net-dialup/ppp')
-rw-r--r-- | net-dialup/ppp/ChangeLog | 5 | ||||
-rw-r--r-- | net-dialup/ppp/ppp-2.4.2-r10.ebuild | 8 |
2 files changed, 8 insertions, 5 deletions
diff --git a/net-dialup/ppp/ChangeLog b/net-dialup/ppp/ChangeLog index 805f45f956b3..6f4613e74d39 100644 --- a/net-dialup/ppp/ChangeLog +++ b/net-dialup/ppp/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-dialup/ppp # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/ppp/ChangeLog,v 1.100 2005/02/06 09:22:13 mrness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/ppp/ChangeLog,v 1.101 2005/02/12 07:52:04 mrness Exp $ + + 12 Feb 2005; Alin Nastac <mrness@gentoo.org> ppp-2.4.2-r10.ebuild: + Fix broken build of radiusclient plugin on SMP machines (#81544). 06 Feb 2005; Alin Nastac <mrness@gentoo.org> files/confd.ppp0, files/ip-down, files/ip-up, files/net.ppp0, -files/2.4.2/confd.ppp0, diff --git a/net-dialup/ppp/ppp-2.4.2-r10.ebuild b/net-dialup/ppp/ppp-2.4.2-r10.ebuild index f20d8ae61f36..4140ad01b346 100644 --- a/net-dialup/ppp/ppp-2.4.2-r10.ebuild +++ b/net-dialup/ppp/ppp-2.4.2-r10.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/ppp/ppp-2.4.2-r10.ebuild,v 1.7 2005/02/06 09:22:13 mrness Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/ppp/ppp-2.4.2-r10.ebuild,v 1.8 2005/02/12 07:52:04 mrness Exp $ inherit eutils gnuconfig flag-o-matic @@ -83,9 +83,9 @@ src_compile() { gnuconfig_update # compile radius better than their makefile does append-ldflags -Wl,-z,now - (cd pppd/plugins/radius/radiusclient && econf && emake) || die - ./configure --prefix=/usr || die - emake COPTS="${CFLAGS}" || die + (cd pppd/plugins/radius/radiusclient && econf && emake -j1 ) || die "radiusclient build has failed" + ./configure --prefix=/usr || die "configure failed" + emake COPTS="${CFLAGS}" || die "build has failed" } src_install() { |