From f8feacf2d2a2e8948a5aeac109f3f2e8deaf7255 Mon Sep 17 00:00:00 2001 From: Denys Dmytriyenko Date: Wed, 12 Aug 2015 06:13:22 +0000 Subject: [PATCH] cuia: revert to clean in do_compile, disable automatic in do_configure Need to unconditionally clean the sources before building the first time, due to wrong binaries present. But calling clean twice also causes failure. Signed-off-by: Denys Dmytriyenko --- recipes-bsp/cuia/cuia_1.0.0.13.bb | 3 +++ 1 file changed, 3 insertions(+) diff --git a/recipes-bsp/cuia/cuia_1.0.0.13.bb b/recipes-bsp/cuia/cuia_1.0.0.13.bb index a9024d20..e048f6aa 100644 --- a/recipes-bsp/cuia/cuia_1.0.0.13.bb +++ b/recipes-bsp/cuia/cuia_1.0.0.13.bb @@ -11,8 +11,11 @@ SRC_URI[cuia.sha256sum] = "f16d138a9146fdc7d52cba77bd30596da65835f6ffe4092baf2b3 S = "${WORKDIR}/cuia_${CUIA_PV}${CUIA_PVExtra}" +CLEANBROKEN = "1" + do_compile () { cd ${S} + oe_runmake clean oe_runmake all }