From a3b2d7f8404b9e772094be8b45e4e6d3fb927cf1 Mon Sep 17 00:00:00 2001 From: Sam James Date: Fri, 19 Nov 2021 07:53:48 +0000 Subject: [PATCH] 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 --- net-analyzer/nmap/nmap-7.92.ebuild | 2 +- 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 ab5c1cca1c67d..b24708e3ba63d 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 58f0f67de1fa7..996ba7b0df850 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 \