From: Ross Burton Date: Thu, 4 Dec 2014 14:17:08 +0000 (+0000) Subject: autotools.bbclass: respect CLEANBROKEN X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~31906 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ffbcb440c43e5e00e73ced67a2c888e9863a1d00;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git autotools.bbclass: respect CLEANBROKEN autotools.bbclass should respect CLEANBROKEN as it invokes 'make clean' on configure. Signed-off-by: Ross Burton --- diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass index bed8a835d41..ca04e7976e4 100644 --- a/meta/classes/autotools.bbclass +++ b/meta/classes/autotools.bbclass @@ -110,7 +110,7 @@ autotools_preconfigure() { # At least remove the .la files since automake won't automatically # regenerate them even if CFLAGS/LDFLAGS are different cd ${S} - if [ -e Makefile -o -e makefile -o -e GNUmakefile ]; then + if [ "${CLEANBROKEN}" != "1" -a \( -e Makefile -o -e makefile -o -e GNUmakefile \) ]; then ${MAKE} clean fi find ${S} -name \*.la -delete