diff options
author | Sam James <sam@gentoo.org> | 2021-11-19 07:53:48 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2021-11-19 08:33:57 +0000 |
commit | a3b2d7f8404b9e772094be8b45e4e6d3fb927cf1 (patch) | |
tree | 7ab9f0eec524e89200693150160da2b65da39e3b /net-analyzer/nmap | |
parent | dev-java/bndlib: Stabilize 2.1.0-r1 amd64, #823263 (diff) | |
download | gentoo-a3b2d7f8404b9e772094be8b45e4e6d3fb927cf1.tar.gz gentoo-a3b2d7f8404b9e772094be8b45e4e6d3fb927cf1.tar.bz2 gentoo-a3b2d7f8404b9e772094be8b45e4e6d3fb927cf1.zip |
net-analyzer/nmap: drop -j1 from install
Been meaning to grep for -j1 and look at what I can do
after seeing slyfox's recent blog post (and then
a recent comment in a Portage bug) and have been
chipping away at them since. After that latest
reminder, noticed this one!
This has been there since 2005 as far as I can
tell and was fixed upstream in 2006:
https://github.com/nmap/nmap/commit/be9e8bf7b105f1f423f01a92f5b243de58da4693
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-analyzer/nmap')
-rw-r--r-- | net-analyzer/nmap/nmap-7.92.ebuild | 2 | ||||
-rw-r--r-- | net-analyzer/nmap/nmap-9999.ebuild | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/net-analyzer/nmap/nmap-7.92.ebuild b/net-analyzer/nmap/nmap-7.92.ebuild index ab5c1cca1c67..b24708e3ba63 100644 --- a/net-analyzer/nmap/nmap-7.92.ebuild +++ b/net-analyzer/nmap/nmap-7.92.ebuild @@ -121,7 +121,7 @@ src_compile() { } src_install() { - LC_ALL=C emake -j1 \ + LC_ALL=C emake \ 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 58f0f67de1fa..996ba7b0df85 100644 --- a/net-analyzer/nmap/nmap-9999.ebuild +++ b/net-analyzer/nmap/nmap-9999.ebuild @@ -122,7 +122,7 @@ src_compile() { } src_install() { - LC_ALL=C emake -j1 \ + LC_ALL=C emake \ DESTDIR="${D}" \ STRIP=: \ nmapdatadir="${EPREFIX}"/usr/share/nmap \ |