From patchwork Wed Jun 22 19:16:15 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Niko Mauno X-Patchwork-Id: 9513 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 42D10C433EF for ; Wed, 22 Jun 2022 19:17:04 +0000 (UTC) Received: from tulikuusama2.dnainternet.net (tulikuusama2.dnainternet.net [83.102.40.151]) by mx.groups.io with SMTP id smtpd.web08.11864.1655925422181207886 for ; Wed, 22 Jun 2022 12:17:02 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=permerror, err=parse error for token &{10 18 spf.protection.outlook.com}: parse error for token &{10 18 spfd.protection.outlook.com}: limit exceeded (domain: vaisala.com, ip: 83.102.40.151, mailfrom: niko.mauno@vaisala.com) Received: from localhost (localhost [127.0.0.1]) by tulikuusama2.dnainternet.net (Postfix) with ESMTP id 4CB7741E91; Wed, 22 Jun 2022 22:17:00 +0300 (EEST) X-Virus-Scanned: DNA Internet at dnainternet.net Received: from tulikuusama2.dnainternet.net ([83.102.40.151]) by localhost (tulikuusama2.dnainternet.net [127.0.0.1]) (DNA Internet, port 10041) with ESMTP id 0Q9dZwLQNr92; Wed, 22 Jun 2022 22:17:00 +0300 (EEST) Received: from omenapuu2.dnainternet.net (omenapuu2.dnainternet.net [83.102.40.54]) by tulikuusama2.dnainternet.net (Postfix) with ESMTP id 1C59A41E97; Wed, 22 Jun 2022 22:17:00 +0300 (EEST) Received: from gasmonkey.vaisala.com (82-181-110-188.bb.dnainternet.fi [82.181.110.188]) by omenapuu2.dnainternet.net (Postfix) with ESMTP id E6E1F1BE; Wed, 22 Jun 2022 22:16:56 +0300 (EEST) From: Niko Mauno To: openembedded-core@lists.openembedded.org Cc: Niko Mauno Subject: [PATCH 3/3] valgrind: Drop redundant oe_runmake parameter Date: Wed, 22 Jun 2022 22:16:15 +0300 Message-Id: <20220622191615.10168-3-niko.mauno@vaisala.com> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220622191615.10168-1-niko.mauno@vaisala.com> References: <20220622191615.10168-1-niko.mauno@vaisala.com> MIME-Version: 1.0 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Wed, 22 Jun 2022 19:17:04 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-core/message/167251 PARALLEL_MAKE is now honored in ptest.bbclass, so drop redundant parameter from oe_runmake call. Signed-off-by: Niko Mauno --- meta/recipes-devtools/valgrind/valgrind_3.19.0.bb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meta/recipes-devtools/valgrind/valgrind_3.19.0.bb b/meta/recipes-devtools/valgrind/valgrind_3.19.0.bb index 6e3234be6b..69915de505 100644 --- a/meta/recipes-devtools/valgrind/valgrind_3.19.0.bb +++ b/meta/recipes-devtools/valgrind/valgrind_3.19.0.bb @@ -141,7 +141,7 @@ SKIP_FILEDEPS:${PN}-ptest = '1' INSANE_SKIP:${PN}-ptest = "debug-deps" do_compile_ptest() { - oe_runmake ${PARALLEL_MAKE} check + oe_runmake check }