From 1d997dd2aa53886dffc8ff726d3013e734bbe717 Mon Sep 17 00:00:00 2001 From: Tom Hochstein Date: Tue, 18 Mar 2025 12:42:02 -0700 Subject: imx-uuc: Don't inherit autotools The do_configure task is failing: ``` ERROR: imx-uuc-0.5.1+git-r1 do_configure: no configure script found at ./configure ``` It appears to be due to this OE-Core change: autotools: require that a configure script exists There's no point inheriting autotools if you're not actually going to run a configure script, so make a missing configure script fatal. https://github.com/openembedded/openembedded-core/commit/6d327a39befae44a88a812bdf4acde800dcee57b imx-uuc doesn't need autotools, just a simple do_install implementation. Signed-off-by: Tom Hochstein --- recipes-bsp/imx-uuc/imx-uuc_git.bb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/recipes-bsp/imx-uuc/imx-uuc_git.bb b/recipes-bsp/imx-uuc/imx-uuc_git.bb index 49fc1558..e245f28b 100644 --- a/recipes-bsp/imx-uuc/imx-uuc_git.bb +++ b/recipes-bsp/imx-uuc/imx-uuc_git.bb @@ -6,8 +6,6 @@ DEPENDS = "virtual/kernel dosfstools-native" LICENSE = "GPL-2.0-only" LIC_FILES_CHKSUM = "file://LICENSE;md5=b234ee4d69f5fce4486a80fdaf4a4263" -inherit autotools-brokensep - PR = "r1" PV = "0.5.1+git${SRCPV}" @@ -16,6 +14,10 @@ SRCREV = "9b4adc0cde346fbae743dc21fcf5115488307b83" S = "${WORKDIR}/git" +do_install() { + oe_runmake 'DESTDIR=${D}' install +} + FILES:${PN} += "/linuxrc /fat" COMPATIBLE_MACHINE = "(imx-generic-bsp)" -- cgit v1.2.3-54-g00ecf