diff options
author | Patrick Lauer <patrick@gentoo.org> | 2012-05-22 03:34:07 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2012-05-22 03:34:07 +0000 |
commit | 5ccdfccfed7f3d570d794d368e1c2cd61dbb2c86 (patch) | |
tree | 3e18ff71e083bc8cf6cfd1f0a926d8bab088f872 /net-analyzer | |
parent | Version bump with UI and crash fixes. (diff) | |
download | gentoo-2-5ccdfccfed7f3d570d794d368e1c2cd61dbb2c86.tar.gz gentoo-2-5ccdfccfed7f3d570d794d368e1c2cd61dbb2c86.tar.bz2 gentoo-2-5ccdfccfed7f3d570d794d368e1c2cd61dbb2c86.zip |
Fix parallel build failure #416987
(Portage version: 2.2.0_alpha107/cvs/Linux x86_64)
Diffstat (limited to 'net-analyzer')
-rw-r--r-- | net-analyzer/nmap/ChangeLog | 5 | ||||
-rw-r--r-- | net-analyzer/nmap/nmap-6.00.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/net-analyzer/nmap/ChangeLog b/net-analyzer/nmap/ChangeLog index a240258fb6c7..7b9df269c360 100644 --- a/net-analyzer/nmap/ChangeLog +++ b/net-analyzer/nmap/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-analyzer/nmap # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.250 2012/05/21 19:30:00 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/ChangeLog,v 1.251 2012/05/22 03:34:07 patrick Exp $ + + 22 May 2012; Patrick Lauer <patrick@gentoo.org> nmap-6.00.ebuild: + Fix parallel build failure #416987 *nmap-6.00 (21 May 2012) diff --git a/net-analyzer/nmap/nmap-6.00.ebuild b/net-analyzer/nmap/nmap-6.00.ebuild index a2021d27ae5d..b2dc66d68863 100644 --- a/net-analyzer/nmap/nmap-6.00.ebuild +++ b/net-analyzer/nmap/nmap-6.00.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.00.ebuild,v 1.1 2012/05/21 19:30:00 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nmap/nmap-6.00.ebuild,v 1.2 2012/05/22 03:34:07 patrick Exp $ EAPI="3" PYTHON_DEPEND="2" @@ -54,8 +54,8 @@ src_configure() { } src_compile() { - emake makefile.dep - emake + emake -j1 makefile.dep + emake -j1 } src_install() { |