[PATCHv2,3/3] valgrind: Drop redundant oe_runmake parameter

Message ID 20220623164356.3239-3-niko.mauno@vaisala.com
State Accepted, archived
Commit 1e351aef06acd383bb5a57a6e0b8a23370d22152
Headers show
Series [PATCHv2,1/3] ptest.bbclass: Honor PARALLEL_MAKE, PARALLEL_MAKEINST | expand

Commit Message

Niko Mauno June 23, 2022, 4:43 p.m. UTC
PARALLEL_MAKE is now honored in ptest.bbclass, so drop redundant
parameter from oe_runmake call.

Signed-off-by: Niko Mauno <niko.mauno@vaisala.com>
---
 meta/recipes-devtools/valgrind/valgrind_3.19.0.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Patch

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
 }