summaryrefslogtreecommitdiffstats
path: root/meta/conf/distro/include/default-distrovars.inc
diff options
context:
space:
mode:
authorMartin Jansa <Martin.Jansa@gmail.com>2021-09-03 13:55:21 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2021-09-03 15:26:25 +0100
commitede2e0df7982777212b8c25195d41ce9e57562b5 (patch)
tree03996dc29c7cb758cd38a4851dbdd92b6c71a4e4 /meta/conf/distro/include/default-distrovars.inc
parenta879fff9af31e45b1acc3f19a3c2a7eaf6319ad4 (diff)
downloadopenembedded-core-contrib-ede2e0df7982777212b8c25195d41ce9e57562b5.tar.gz
default-distrovars.inc: Set BBINCLUDELOGS to empty to disable printing failed task output multiple times
* the output is shown 3 times with default configuration and 5 times when --verbose is being used with knotty, there might be other use-cases where we actually need this, but until the logging is resolved better, setting this to empty looks like more reasonable option (considering that e.g. log.do_compile from chromium-x11 can be over 50MB long, generating 150MB+ cooker log) * more details in: https://bugzilla.yoctoproject.org/show_bug.cgi?id=14542 Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf/distro/include/default-distrovars.inc')
-rw-r--r--meta/conf/distro/include/default-distrovars.inc6
1 files changed, 4 insertions, 2 deletions
diff --git a/meta/conf/distro/include/default-distrovars.inc b/meta/conf/distro/include/default-distrovars.inc
index f91df632d5..5035508b98 100644
--- a/meta/conf/distro/include/default-distrovars.inc
+++ b/meta/conf/distro/include/default-distrovars.inc
@@ -33,8 +33,10 @@ BB_GENERATE_MIRROR_TARBALLS ??= "0"
NO32LIBS ??= "1"
-# Default to emitting logfiles if a build fails.
-BBINCLUDELOGS ??= "yes"
+# Default logger already emits logfiles if a build fails, setting this to any non-empty value would just include more copies (prefixed with "|") in the output
+# https://bugzilla.yoctoproject.org/show_bug.cgi?id=14542
+BBINCLUDELOGS ??= ""
+
SDK_VERSION ??= "nodistro.0"
DISTRO_VERSION ??= "nodistro.0"