diff options
author | Wolfram Schlich <wschlich@gentoo.org> | 2008-03-13 11:23:52 +0000 |
---|---|---|
committer | Wolfram Schlich <wschlich@gentoo.org> | 2008-03-13 11:23:52 +0000 |
commit | 1e3f76bdbb54ea7e589a270f29947352fea5f2bb (patch) | |
tree | 323592d03563dada03d0086861bb239f61dc796b /net-firewall/ipsec-tools | |
parent | re-activation of package as per bugs #106497 and #176738 (diff) | |
download | gentoo-2-1e3f76bdbb54ea7e589a270f29947352fea5f2bb.tar.gz gentoo-2-1e3f76bdbb54ea7e589a270f29947352fea5f2bb.tar.bz2 gentoo-2-1e3f76bdbb54ea7e589a270f29947352fea5f2bb.zip |
filter parallel make (bug #176998)
(Portage version: 2.1.4)
Diffstat (limited to 'net-firewall/ipsec-tools')
-rw-r--r-- | net-firewall/ipsec-tools/ChangeLog | 6 | ||||
-rw-r--r-- | net-firewall/ipsec-tools/ipsec-tools-0.6.7.ebuild | 8 |
2 files changed, 9 insertions, 5 deletions
diff --git a/net-firewall/ipsec-tools/ChangeLog b/net-firewall/ipsec-tools/ChangeLog index d4074e51990d..e7fdd1225d2b 100644 --- a/net-firewall/ipsec-tools/ChangeLog +++ b/net-firewall/ipsec-tools/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-firewall/ipsec-tools # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v 1.58 2008/03/12 14:16:28 phreak Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ChangeLog,v 1.59 2008/03/13 11:23:52 wschlich Exp $ + + 13 Mar 2008; Wolfram Schlich <wschlich@gentoo.org> + ipsec-tools-0.6.7.ebuild: + filter parallel make (bug #176998) 12 Mar 2008; Christian Heim <phreak@gentoo.org> metadata.xml: Removing Peter Johanson (latexer, #206688) from metadata.xml. diff --git a/net-firewall/ipsec-tools/ipsec-tools-0.6.7.ebuild b/net-firewall/ipsec-tools/ipsec-tools-0.6.7.ebuild index b775f3ea4b63..cd7eae6b6103 100644 --- a/net-firewall/ipsec-tools/ipsec-tools-0.6.7.ebuild +++ b/net-firewall/ipsec-tools/ipsec-tools-0.6.7.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.6.7.ebuild,v 1.11 2007/08/03 16:01:48 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-firewall/ipsec-tools/ipsec-tools-0.6.7.ebuild,v 1.12 2008/03/13 11:23:52 wschlich Exp $ inherit eutils flag-o-matic autotools linux-info @@ -197,8 +197,8 @@ src_compile() { #myconf="${myconf} --enable-samode-unspec" econf ${myconf} || die - # As of ${PN}-0.6.6 parallel make is still broken. I hope its fixed now. - emake || die + MAKEOPTS="${MAKEOPTS} -j1" # parallel make is still broken + emake || die } |