From patchwork Sun Apr 10 20:13:27 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [1/6] autotools: Pass --disable-silent-rules to configure Date: Sun, 10 Apr 2011 20:13:27 -0000 From: Saul Wold X-Patchwork-Id: 2135 Message-Id: To: openembedded-core@lists.openembedded.org Cc: Darren Hart , Xiaofeng Yan From: Colin Walters 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 --- meta/classes/autotools.bbclass | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/meta/classes/autotools.bbclass b/meta/classes/autotools.bbclass index bc891f9..7ebf833 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 () {