From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C3D35158094 for ; Mon, 4 Jul 2022 23:24:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6E65FE0ADC; Mon, 4 Jul 2022 23:24:19 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 47EC9E0ADC for ; Mon, 4 Jul 2022 23:24:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 58A373419F8 for ; Mon, 4 Jul 2022 23:24:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A7E1052C for ; Mon, 4 Jul 2022 23:24:15 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1656977041.b36373978816cbcf1840cc1f445d4602de2093f2.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-forensics/aflplusplus/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-forensics/aflplusplus/files/aflplusplus-4.01c-no-ignore-errors-makefile.patch X-VCS-Directories: app-forensics/aflplusplus/files/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b36373978816cbcf1840cc1f445d4602de2093f2 X-VCS-Branch: master Date: Mon, 4 Jul 2022 23:24:15 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: e64fb18a-dc57-4e2e-872f-f8d443db92e8 X-Archives-Hash: 30da6eaebfa78262da9984047de4604f commit: b36373978816cbcf1840cc1f445d4602de2093f2 Author: Alexander Miller gmx de> AuthorDate: Mon Jul 4 17:04:52 2022 +0000 Commit: Sam James gentoo 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 gmx.de> Signed-off-by: Sam James 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