From: Robert Yang Date: Wed, 14 Jan 2015 08:55:33 +0000 (-0800) Subject: autotools.bbclass: print make clean X-Git-Tag: 2015-4~736 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=c34d9e66a1a97952965128ab84c691202a60985b;p=openembedded-core.git autotools.bbclass: print make clean It makes us easier to see make clean failed. Signed-off-by: Robert Yang --- diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass index ca04e7976e..402ee1bf01 100644 --- a/meta/classes/autotools.bbclass +++ b/meta/classes/autotools.bbclass @@ -111,6 +111,7 @@ autotools_preconfigure() { # regenerate them even if CFLAGS/LDFLAGS are different cd ${S} if [ "${CLEANBROKEN}" != "1" -a \( -e Makefile -o -e makefile -o -e GNUmakefile \) ]; then + echo "Running \"${MAKE} clean\" in ${S}" ${MAKE} clean fi find ${S} -name \*.la -delete