From: Ross Burton Date: Thu, 4 Dec 2014 14:17:08 +0000 (+0000) Subject: autotools.bbclass: respect CLEANBROKEN X-Git-Tag: 2015-4~1069 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=ffbcb440c43e5e00e73ced67a2c888e9863a1d00;p=openembedded-core.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 bed8a835d4..ca04e7976e 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