diff options
author | Sam James <sam@gentoo.org> | 2022-01-22 04:41:34 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-01-22 04:41:34 +0000 |
commit | e2418094a1aa5653cbaf3a88cb5d354f58a7032e (patch) | |
tree | 28c074d0fee451b1a030235026737fb1da6f58a9 /net-analyzer/nmap | |
parent | net-analyzer/wireshark: fix build without zlib (diff) | |
download | gentoo-e2418094a1aa5653cbaf3a88cb5d354f58a7032e.tar.gz gentoo-e2418094a1aa5653cbaf3a88cb5d354f58a7032e.tar.bz2 gentoo-e2418094a1aa5653cbaf3a88cb5d354f58a7032e.zip |
net-analyzer/nmap: force -j1 again in src_install for now
Apparently not fixed, or a new issue resurfaced anyway.
Closes: https://bugs.gentoo.org/831713
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-analyzer/nmap')
-rw-r--r-- | net-analyzer/nmap/nmap-7.92.ebuild | 4 | ||||
-rw-r--r-- | net-analyzer/nmap/nmap-9999.ebuild | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/net-analyzer/nmap/nmap-7.92.ebuild b/net-analyzer/nmap/nmap-7.92.ebuild index 348adce730a5..8578d039870f 100644 --- a/net-analyzer/nmap/nmap-7.92.ebuild +++ b/net-analyzer/nmap/nmap-7.92.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -121,7 +121,9 @@ src_compile() { } src_install() { + # See bug #831713 for return of -j1 LC_ALL=C emake \ + -j1 \ DESTDIR="${D}" \ STRIP=: \ nmapdatadir="${EPREFIX}"/usr/share/nmap \ diff --git a/net-analyzer/nmap/nmap-9999.ebuild b/net-analyzer/nmap/nmap-9999.ebuild index 466e9b414a06..e04fab825e5c 100644 --- a/net-analyzer/nmap/nmap-9999.ebuild +++ b/net-analyzer/nmap/nmap-9999.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -122,7 +122,9 @@ src_compile() { } src_install() { + # See bug #831713 for return of -j1 LC_ALL=C emake \ + -j1 \ DESTDIR="${D}" \ STRIP=: \ nmapdatadir="${EPREFIX}"/usr/share/nmap \ |