Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-forensics/aflplusplus/files/
Date: Mon, 04 Jul 2022 23:24:21
Message-Id: 1656977041.b36373978816cbcf1840cc1f445d4602de2093f2.sam@gentoo
1 commit: b36373978816cbcf1840cc1f445d4602de2093f2
2 Author: Alexander Miller <alex.miller <AT> gmx <DOT> de>
3 AuthorDate: Mon Jul 4 17:04:52 2022 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Mon Jul 4 23:24:01 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3637397
7
8 app-forensics/aflplusplus: Don't override jobs parameter for sub-makes
9
10 Signed-off-by: Alexander Miller <alex.miller <AT> gmx.de>
11 Signed-off-by: Sam James <sam <AT> gentoo.org>
12
13 .../files/aflplusplus-4.01c-no-ignore-errors-makefile.patch | 7 ++++---
14 1 file changed, 4 insertions(+), 3 deletions(-)
15
16 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
17 index 8a78e7d791d8..861835892bb5 100644
18 --- a/app-forensics/aflplusplus/files/aflplusplus-4.01c-no-ignore-errors-makefile.patch
19 +++ b/app-forensics/aflplusplus/files/aflplusplus-4.01c-no-ignore-errors-makefile.patch
20 @@ -1,4 +1,5 @@
21 https://bugs.gentoo.org/800941
22 +(also don't override jobs for sub-makes)
23
24 --- a/GNUmakefile
25 +++ b/GNUmakefile
26 @@ -12,7 +13,7 @@ https://bugs.gentoo.org/800941
27 .PHONY: llvm
28 llvm:
29 - -$(MAKE) -j4 -f GNUmakefile.llvm
30 -+ $(MAKE) -j4 -f GNUmakefile.llvm
31 ++ $(MAKE) -f GNUmakefile.llvm
32 @test -e afl-cc || { echo "[-] Compiling afl-cc failed. You seem not to have a working compiler." ; exit 1; }
33
34 .PHONY: gcc_plugin
35 @@ -60,7 +61,7 @@ https://bugs.gentoo.org/800941
36 .PHONY: distrib
37 distrib: all
38 - -$(MAKE) -j4 -f GNUmakefile.llvm
39 -+ $(MAKE) -j4 -f GNUmakefile.llvm
40 ++ $(MAKE) -f GNUmakefile.llvm
41 ifneq "$(SYS)" "Darwin"
42 - -$(MAKE) -f GNUmakefile.gcc_plugin
43 + $(MAKE) -f GNUmakefile.gcc_plugin
44 @@ -116,7 +117,7 @@ https://bugs.gentoo.org/800941
45 .PHONY: source-only
46 source-only: all
47 - -$(MAKE) -j4 -f GNUmakefile.llvm
48 -+ $(MAKE) -j4 -f GNUmakefile.llvm
49 ++ $(MAKE) -f GNUmakefile.llvm
50 ifneq "$(SYS)" "Darwin"
51 - -$(MAKE) -f GNUmakefile.gcc_plugin
52 + $(MAKE) -f GNUmakefile.gcc_plugin