diff options
author | 2004-10-29 10:56:40 +0000 | |
---|---|---|
committer | 2004-10-29 10:56:40 +0000 | |
commit | abd011883ff7131e072cb53c2f9d94714f15a1cc (patch) | |
tree | 69ed9d8fb81c2e67ae6488e5bf0f025198dec911 /net-analyzer/nessus-core | |
parent | New ebuild (diff) | |
download | historical-abd011883ff7131e072cb53c2f9d94714f15a1cc.tar.gz historical-abd011883ff7131e072cb53c2f9d94714f15a1cc.tar.bz2 historical-abd011883ff7131e072cb53c2f9d94714f15a1cc.zip |
Parallel build problem, fixed to emake -j1. Closes #69386.
Diffstat (limited to 'net-analyzer/nessus-core')
-rw-r--r-- | net-analyzer/nessus-core/ChangeLog | 5 | ||||
-rw-r--r-- | net-analyzer/nessus-core/Manifest | 10 | ||||
-rw-r--r-- | net-analyzer/nessus-core/nessus-core-2.2.0.ebuild | 4 |
3 files changed, 11 insertions, 8 deletions
diff --git a/net-analyzer/nessus-core/ChangeLog b/net-analyzer/nessus-core/ChangeLog index 8691b97f3052..84244adc4833 100644 --- a/net-analyzer/nessus-core/ChangeLog +++ b/net-analyzer/nessus-core/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-analyzer/nessus-core # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nessus-core/ChangeLog,v 1.49 2004/10/28 15:36:23 eldad Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nessus-core/ChangeLog,v 1.50 2004/10/29 10:56:40 eldad Exp $ + + 29 Oct 2004; Eldad Zack <eldad@gentoo.org> nessus-core-2.2.0.ebuild: + Parallel build problem, fixed to emake -j1. Closes #69386. *nessus-core-2.2.0 (28 Oct 2004) diff --git a/net-analyzer/nessus-core/Manifest b/net-analyzer/nessus-core/Manifest index a7dd7ac97d6f..2129b5cce70f 100644 --- a/net-analyzer/nessus-core/Manifest +++ b/net-analyzer/nessus-core/Manifest @@ -1,9 +1,9 @@ -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 -MD5 2740bc1837aa2db94c52fe5116b9d34c nessus-core-2.2.0.ebuild 1834 +MD5 bc8306c4f9969f69c28a6a45c701b45e nessus-core-2.2.0.ebuild 1838 MD5 2c32e5f366c81fb242b76b668a93408a nessus-core-2.0.12.ebuild 1833 -MD5 792602a9b35b1bc5ad54af51a06f662d ChangeLog 7691 +MD5 dfe476c226e47a989764d27671c3e290 ChangeLog 7824 MD5 883d45d6092c114bdf3d35a3ce45161a metadata.xml 244 MD5 16d08afb09cfc5710977cd1d01174398 files/digest-nessus-core-2.0.12 139 MD5 d523fcb11205cb895b8d8c1272c07d33 files/digest-nessus-core-2.2.0 138 @@ -13,7 +13,7 @@ MD5 5c3b75512d095ff2ff65bbe535fe63b3 files/nessus-core-2.0.7.patch 448 -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.6 (GNU/Linux) -iD8DBQFBgRGfT+MN7JbqCpMRAqkzAJ9jncovh5cb2uU1ty8JYHFLvODUTACfQO7U -AHqbBISQnC77m5a/ZqQLBNM= -=rfhA +iD8DBQFBgiGJT+MN7JbqCpMRAo6LAJ9ssGG5uM/twA6JWr+QRd0Y6ixbNACeJn3H +qFSHSsXivFNY1sQykCzsrYU= +=jQXY -----END PGP SIGNATURE----- diff --git a/net-analyzer/nessus-core/nessus-core-2.2.0.ebuild b/net-analyzer/nessus-core/nessus-core-2.2.0.ebuild index 6e04131fe19c..c2a38d3597c7 100644 --- a/net-analyzer/nessus-core/nessus-core-2.2.0.ebuild +++ b/net-analyzer/nessus-core/nessus-core-2.2.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nessus-core/nessus-core-2.2.0.ebuild,v 1.1 2004/10/28 15:36:23 eldad Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nessus-core/nessus-core-2.2.0.ebuild,v 1.2 2004/10/29 10:56:40 eldad Exp $ inherit eutils @@ -49,7 +49,7 @@ src_compile() { fi use X || myconf="${myconf} --disable-gtk" econf ${myconf} || die "configure failed" - emake || die "emake failed" + emake -j1 || die "emake failed" } |