aboutsummaryrefslogtreecommitdiffstats
path: root/meta/classes/autotools.bbclass
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2011-03-23 18:28:36 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-04-12 09:47:15 -0700
commit86a760d8b573cfffaf1ac633fcffdfec748663cb (patch)
treed826d8d68b831b83a280955970580ea6ae703259 /meta/classes/autotools.bbclass
parent82561aa631c4e0e0756925774e5126e79f8d9907 (diff)
downloadopenembedded-core-contrib-86a760d8b573cfffaf1ac633fcffdfec748663cb.tar.gz
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 <sgw@linux.intel.com>
Diffstat (limited to 'meta/classes/autotools.bbclass')
-rw-r--r--meta/classes/autotools.bbclass1
1 files changed, 1 insertions, 0 deletions
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 () {