diff options
author | Alexander Miller <alex.miller@gmx.de> | 2022-07-04 19:04:52 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-07-05 00:24:01 +0100 |
commit | b36373978816cbcf1840cc1f445d4602de2093f2 (patch) | |
tree | 01d87061dc03b14aafb12838570352d2925a90d7 /app-forensics/aflplusplus | |
parent | app-forensics/aflplusplus: Disable LTO for runtime (diff) | |
download | gentoo-b36373978816cbcf1840cc1f445d4602de2093f2.tar.gz gentoo-b36373978816cbcf1840cc1f445d4602de2093f2.tar.bz2 gentoo-b36373978816cbcf1840cc1f445d4602de2093f2.zip |
app-forensics/aflplusplus: Don't override jobs parameter for sub-makes
Signed-off-by: Alexander Miller <alex.miller@gmx.de>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'app-forensics/aflplusplus')
-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 |