diff mbox series

[meta-networking,113/128] pimd: skip pre-configure make clean via CLEANBROKEN

Message ID 20260628162222.4081517-13-khem.raj@oss.qualcomm.com
State New
Headers show
Series None | expand

Commit Message

Khem Raj June 28, 2026, 4:22 p.m. UTC
The shipped Makefile does 'include config.mk' which is only created by
configure, so the 'make clean' run by autotools_preconfigure fails before
configure has run.

Set CLEANBROKEN to skip that pre-configure clean.

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 meta-networking/recipes-support/pimd/pimd_2.3.2.bb | 5 +++++
 1 file changed, 5 insertions(+)
diff mbox series

Patch

diff --git a/meta-networking/recipes-support/pimd/pimd_2.3.2.bb b/meta-networking/recipes-support/pimd/pimd_2.3.2.bb
index 647f9df515..9482c22a0c 100644
--- a/meta-networking/recipes-support/pimd/pimd_2.3.2.bb
+++ b/meta-networking/recipes-support/pimd/pimd_2.3.2.bb
@@ -13,6 +13,11 @@  EXTRA_OECONF:append:libc-musl = " --embedded-libc"
 
 inherit autotools-brokensep update-alternatives
 
+# The shipped Makefile "include config.mk" which is only created by configure,
+# so the "make clean" run by autotools_preconfigure fails before configure has
+# run. Skip that pre-configure clean.
+CLEANBROKEN = "1"
+
 do_configure() {
     oe_runconf
 }