diff options
author | Colin Walters <walters@verbum.org> | 2011-03-23 18:28:36 -0400 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-04-12 09:47:15 -0700 |
commit | 86a760d8b573cfffaf1ac633fcffdfec748663cb (patch) | |
tree | d826d8d68b831b83a280955970580ea6ae703259 /meta/classes | |
parent | 82561aa631c4e0e0756925774e5126e79f8d9907 (diff) | |
download | openembedded-core-86a760d8b573cfffaf1ac633fcffdfec748663cb.tar.gz openembedded-core-86a760d8b573cfffaf1ac633fcffdfec748663cb.tar.bz2 openembedded-core-86a760d8b573cfffaf1ac633fcffdfec748663cb.zip |
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')
-rw-r--r-- | 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 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 () { |