[PATCHv2,2/3] strace: Drop redundant oe_runmake parameter

Message ID 20220623164356.3239-2-niko.mauno@vaisala.com
State Accepted, archived
Commit c314316831ac602a31275c303c36974e8a632ce5
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/strace/strace_5.18.bb | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Patch

diff --git a/meta/recipes-devtools/strace/strace_5.18.bb b/meta/recipes-devtools/strace/strace_5.18.bb
index 3164ebca51..08f0f1d27e 100644
--- a/meta/recipes-devtools/strace/strace_5.18.bb
+++ b/meta/recipes-devtools/strace/strace_5.18.bb
@@ -33,7 +33,7 @@  TESTDIR = "tests"
 PTEST_BUILD_HOST_PATTERN = "^(DEB_CHANGELOGTIME|RPM_CHANGELOGTIME|WARN_CFLAGS_FOR_BUILD|LDFLAGS_FOR_BUILD)"
 
 do_compile_ptest() {
-	oe_runmake ${PARALLEL_MAKE} -C ${TESTDIR} buildtest-TESTS
+	oe_runmake -C ${TESTDIR} buildtest-TESTS
 }
 
 do_install_ptest() {