]> code.ossystems Code Review - openembedded-core.git/commitdiff
base.bbclass: Enable using 'make clean' for rebuilds
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 24 Oct 2014 14:17:03 +0000 (15:17 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 30 Oct 2014 13:03:55 +0000 (13:03 +0000)
When something rebuilds say due to ${baselib} changing or some
other key variable, software is often not rebuilt due to the
fact that make detects no dependency change.

By running "make clean" when these changes occur, we can at least try
and ensure the correct rebuilds happen. We use the same checksum check as
autotools to decide if things have changed or not.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/classes/base.bbclass

index ff8c63394f0a11129f2c842f9d7b4938f1a39cc5..e1b25ff1342469979ddc67ad348a54b84735db06 100644 (file)
@@ -216,11 +216,24 @@ python base_eventhandler() {
 
 }
 
+CONFIGURESTAMPFILE = "${WORKDIR}/configure.sstate"
+
 addtask configure after do_patch
 do_configure[dirs] = "${S} ${B}"
 do_configure[deptask] = "do_populate_sysroot"
 base_do_configure() {
-       :
+       if [ -n "${CONFIGURESTAMPFILE}" -a -e "${CONFIGURESTAMPFILE}" ]; then
+               if [ "`cat ${CONFIGURESTAMPFILE}`" != "${BB_TASKHASH}" ]; then
+                       cd ${B}
+                       if [ -e Makefile -o -e makefile -o -e GNUmakefile ]; then
+                               ${MAKE} clean
+                       fi
+                       find ${B} -name \*.la -delete
+               fi
+       fi
+       if [ -n "${CONFIGURESTAMPFILE}" ]; then
+               echo ${BB_TASKHASH} > ${CONFIGURESTAMPFILE}
+       fi
 }
 
 addtask compile after do_configure