summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2023-05-20 00:43:58 -0700
committerKhem Raj <raj.khem@gmail.com>2023-05-20 00:45:51 -0700
commit29e6c4928cfbfe3a00921b956938781d53563582 (patch)
treec8a7022825c100d05e59709fdabfb32e06c04e5c
parent9f1f22f95bc5e4e74cc8a4399b2d63ff15303896 (diff)
downloadmeta-openembedded-29e6c4928cfbfe3a00921b956938781d53563582.tar.gz
mcelog: Upgrade to 194
Drop unneeded autotools-brokensep class inherit, this package has traditional makefile build. Signed-off-by: Khem Raj <raj.khem@gmail.com>
-rw-r--r--meta-oe/recipes-support/mcelog/mcelog_194.bb (renamed from meta-oe/recipes-support/mcelog/mcelog_191.bb)13
1 files changed, 10 insertions, 3 deletions
diff --git a/meta-oe/recipes-support/mcelog/mcelog_191.bb b/meta-oe/recipes-support/mcelog/mcelog_194.bb
index e713433469..9b5c554d86 100644
--- a/meta-oe/recipes-support/mcelog/mcelog_191.bb
+++ b/meta-oe/recipes-support/mcelog/mcelog_194.bb
@@ -11,18 +11,25 @@ SRC_URI = "\
11 file://run-ptest \ 11 file://run-ptest \
12" 12"
13 13
14SRCREV = "a3552acad43ac1f47d3acba1c79462bdece4ea17" 14SRCREV = "8f33fdc47160edce09d75e1316b4d88129ca60a0"
15 15
16LICENSE = "GPL-2.0-only" 16LICENSE = "GPL-2.0-only"
17LIC_FILES_CHKSUM = "file://LICENSE;md5=b234ee4d69f5fce4486a80fdaf4a4263" 17LIC_FILES_CHKSUM = "file://LICENSE;md5=b234ee4d69f5fce4486a80fdaf4a4263"
18 18
19S = "${WORKDIR}/git" 19S = "${WORKDIR}/git"
20 20
21inherit autotools-brokensep ptest 21inherit ptest
22 22
23COMPATIBLE_HOST = '(x86_64.*|i.86.*)-linux' 23COMPATIBLE_HOST = '(x86_64.*|i.86.*)-linux'
24 24
25do_install:append() { 25EXTRA_OEMAKE += "CFLAGS='${CFLAGS}'"
26
27do_compile() {
28 oe_runmake
29}
30
31do_install() {
32 oe_runmake install DESTDIR=${D}
26 install -d ${D}${sysconfdir}/cron.hourly 33 install -d ${D}${sysconfdir}/cron.hourly
27 install -m 0755 ${S}/mcelog.cron ${D}${sysconfdir}/cron.hourly/ 34 install -m 0755 ${S}/mcelog.cron ${D}${sysconfdir}/cron.hourly/
28 sed -i 's/bash/sh/' ${D}${sysconfdir}/cron.hourly/mcelog.cron 35 sed -i 's/bash/sh/' ${D}${sysconfdir}/cron.hourly/mcelog.cron