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 10:12:20 -0700 |
commit | c879c637cd57641b1ff0381edd20d2d83b8e42eb (patch) | |
tree | 9b93ac06cfb3f05e755890a11dbeb540f93a5638 | |
parent | 90f803de19e3df4735ccf0c3c99aab733ec2c216 (diff) | |
download | poky-c879c637cd57641b1ff0381edd20d2d83b8e42eb.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.
(From OE-Core rev: 86a760d8b573cfffaf1ac633fcffdfec748663cb)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-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} \ | |||
63 | --oldincludedir=${oldincludedir} \ | 63 | --oldincludedir=${oldincludedir} \ |
64 | --infodir=${infodir} \ | 64 | --infodir=${infodir} \ |
65 | --mandir=${mandir} \ | 65 | --mandir=${mandir} \ |
66 | --disable-silent-rules \ | ||
66 | ${@append_libtool_sysroot(d)}" | 67 | ${@append_libtool_sysroot(d)}" |
67 | 68 | ||
68 | oe_runconf () { | 69 | oe_runconf () { |