diff mbox series

[4/9] mce-inject: don't inherit autotools

Message ID 20250319120836.982987-4-ross.burton@arm.com
State New
Headers show
Series [1/9] rdisk: don't inherit autotools | expand

Commit Message

Ross Burton March 19, 2025, 12:08 p.m. UTC
This upstream does not in fact use autotools, so remove the inherit and
implement the required do_install.

Signed-off-by: Ross Burton <ross.burton@arm.com>
---
 meta-oe/recipes-support/mcelog/mce-inject_git.bb | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/meta-oe/recipes-support/mcelog/mce-inject_git.bb b/meta-oe/recipes-support/mcelog/mce-inject_git.bb
index 8fc8e2b5e5..6c1255772d 100644
--- a/meta-oe/recipes-support/mcelog/mce-inject_git.bb
+++ b/meta-oe/recipes-support/mcelog/mce-inject_git.bb
@@ -19,6 +19,8 @@  S = "${WORKDIR}/git"
 
 COMPATIBLE_HOST = '(x86_64.*|i.86.*)-linux'
 
-inherit autotools-brokensep
+EXTRA_OEMAKE = "CFLAGS='${CFLAGS}'"
 
-EXTRA_OEMAKE = "destdir=${D} CFLAGS='${CFLAGS}'"
+do_install() {
+    oe_runmake 'destdir=${D}' install
+}