summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@arm.com>2025-03-19 17:41:44 +0000
committerKhem Raj <raj.khem@gmail.com>2025-03-19 11:37:47 -0700
commitca4bd3c7864916da1787945a8fd073ef12e76c0e (patch)
treead36e8108ec06720c54beda928bb27fd128cb9b1
parent56d59ac2d3c30db339f1687e365ceb11340a560b (diff)
downloadmeta-openembedded-ca4bd3c7864916da1787945a8fd073ef12e76c0e.tar.gz
mce-inject: don't inherit autotools
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> Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-support/mcelog/mce-inject_git.bb6
1 files changed, 4 insertions, 2 deletions
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"
19 19
20COMPATIBLE_HOST = '(x86_64.*|i.86.*)-linux' 20COMPATIBLE_HOST = '(x86_64.*|i.86.*)-linux'
21 21
22inherit autotools-brokensep 22EXTRA_OEMAKE = "CFLAGS='${CFLAGS}'"
23 23
24EXTRA_OEMAKE = "destdir=${D} CFLAGS='${CFLAGS}'" 24do_install() {
25 oe_runmake 'destdir=${D}' install
26}