summaryrefslogtreecommitdiffstats
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 10:12:20 -0700
commitc879c637cd57641b1ff0381edd20d2d83b8e42eb (patch)
tree9b93ac06cfb3f05e755890a11dbeb540f93a5638 /meta/classes/autotools.bbclass
parent90f803de19e3df4735ccf0c3c99aab733ec2c216 (diff)
downloadpoky-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>
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} \
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
68oe_runconf () { 69oe_runconf () {