From: Markus Lehtonen Date: Fri, 29 Jan 2016 15:04:29 +0000 (+0200) Subject: autotools.bbclass: use oe_runmake instead of ${MAKE} X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~27276 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5e89a79ae7f26735e523917555251313995d01d4;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git autotools.bbclass: use oe_runmake instead of ${MAKE} Use oe_runmake like in base.bbclass so that EXTRA_OEMAKE will be respected. Signed-off-by: Markus Lehtonen Signed-off-by: Richard Purdie --- diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass index 4601148fc36..826762d402d 100644 --- a/meta/classes/autotools.bbclass +++ b/meta/classes/autotools.bbclass @@ -112,8 +112,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 + oe_runmake clean fi find ${S} -ignore_readdir_race -name \*.la -delete fi