summaryrefslogtreecommitdiffstats
path: root/recipes-bsp/cuia
diff options
context:
space:
mode:
authorDenys Dmytriyenko <denys@ti.com>2015-08-12 06:13:22 +0000
committerDenys Dmytriyenko <denys@ti.com>2015-08-11 23:33:11 -0400
commitf8feacf2d2a2e8948a5aeac109f3f2e8deaf7255 (patch)
tree77b5b36af7c674fe4d12212fcb80025419c020bd /recipes-bsp/cuia
parentf55ca0fc55ce72ea5b55527f6a2c67a989b7740d (diff)
downloadmeta-ti-f8feacf2d2a2e8948a5aeac109f3f2e8deaf7255.tar.gz
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 <denys@ti.com>
Diffstat (limited to 'recipes-bsp/cuia')
-rw-r--r--recipes-bsp/cuia/cuia_1.0.0.13.bb3
1 files changed, 3 insertions, 0 deletions
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
11 11
12S = "${WORKDIR}/cuia_${CUIA_PV}${CUIA_PVExtra}" 12S = "${WORKDIR}/cuia_${CUIA_PV}${CUIA_PVExtra}"
13 13
14CLEANBROKEN = "1"
15
14do_compile () { 16do_compile () {
15 cd ${S} 17 cd ${S}
18 oe_runmake clean
16 oe_runmake all 19 oe_runmake all
17} 20}
18 21