diff options
-rw-r--r-- | app-forensics/aflplusplus/files/aflplusplus-4.01c-no-ignore-errors-makefile.patch | 7 |
1 files 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 |