commit: b36373978816cbcf1840cc1f445d4602de2093f2 Author: Alexander Miller <alex.miller <AT> gmx <DOT> de> AuthorDate: Mon Jul 4 17:04:52 2022 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Mon Jul 4 23:24:01 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3637397
app-forensics/aflplusplus: Don't override jobs parameter for sub-makes Signed-off-by: Alexander Miller <alex.miller <AT> gmx.de> Signed-off-by: Sam James <sam <AT> gentoo.org> .../files/aflplusplus-4.01c-no-ignore-errors-makefile.patch | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app-forensics/aflplusplus/files/aflplusplus-4.01c-no-ignore-errors-makefile.patch b/app-forensics/aflplusplus/files/aflplusplus-4.01c-no-ignore-errors-makefile.patch index 8a78e7d791d8..861835892bb5 100644 --- a/app-forensics/aflplusplus/files/aflplusplus-4.01c-no-ignore-errors-makefile.patch +++ b/app-forensics/aflplusplus/files/aflplusplus-4.01c-no-ignore-errors-makefile.patch @@ -1,4 +1,5 @@ https://bugs.gentoo.org/800941 +(also don't override jobs for sub-makes) --- a/GNUmakefile +++ b/GNUmakefile @@ -12,7 +13,7 @@ https://bugs.gentoo.org/800941 .PHONY: llvm llvm: - -$(MAKE) -j4 -f GNUmakefile.llvm -+ $(MAKE) -j4 -f GNUmakefile.llvm ++ $(MAKE) -f GNUmakefile.llvm @test -e afl-cc || { echo "[-] Compiling afl-cc failed. You seem not to have a working compiler." ; exit 1; } .PHONY: gcc_plugin @@ -60,7 +61,7 @@ https://bugs.gentoo.org/800941 .PHONY: distrib distrib: all - -$(MAKE) -j4 -f GNUmakefile.llvm -+ $(MAKE) -j4 -f GNUmakefile.llvm ++ $(MAKE) -f GNUmakefile.llvm ifneq "$(SYS)" "Darwin" - -$(MAKE) -f GNUmakefile.gcc_plugin + $(MAKE) -f GNUmakefile.gcc_plugin @@ -116,7 +117,7 @@ https://bugs.gentoo.org/800941 .PHONY: source-only source-only: all - -$(MAKE) -j4 -f GNUmakefile.llvm -+ $(MAKE) -j4 -f GNUmakefile.llvm ++ $(MAKE) -f GNUmakefile.llvm ifneq "$(SYS)" "Darwin" - -$(MAKE) -f GNUmakefile.gcc_plugin + $(MAKE) -f GNUmakefile.gcc_plugin
