From: Colin Walters Date: Wed, 23 Mar 2011 22:28:36 +0000 (-0400) Subject: autotools: Pass --disable-silent-rules to configure X-Git-Tag: 2011-1~1809 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=86a760d8b573cfffaf1ac633fcffdfec748663cb;p=openembedded-core.git autotools: Pass --disable-silent-rules to configure Non-verbose logs are really annoying when trying to debug a build failure. A lot of projects are copying in the flag to use AM_SILENT_RULES which automake gained recently. We need to undo this. We'll get a warning from configure if it's not recognized, but that's fine. Signed-off-by: Saul Wold --- diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass index bc891f94e7..7ebf833603 100644 --- a/meta/classes/autotools.bbclass +++ b/meta/classes/autotools.bbclass @@ -63,6 +63,7 @@ CONFIGUREOPTS = " --build=${BUILD_SYS} \ --oldincludedir=${oldincludedir} \ --infodir=${infodir} \ --mandir=${mandir} \ + --disable-silent-rules \ ${@append_libtool_sysroot(d)}" oe_runconf () {