]> code.ossystems Code Review - openembedded-core.git/commitdiff
bitbake.conf: use weak assignment for BB_CONSOLELOG
authorMartin Jansa <martin.jansa@gmail.com>
Sun, 26 Feb 2012 07:49:40 +0000 (08:49 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 26 Feb 2012 10:54:40 +0000 (10:54 +0000)
* some people prefer subdirectory like ${TMPDIR}/cooker/${DATETIME}.log

Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/conf/bitbake.conf

index 2539ae0f0ab604cdcbe462752abec714a2ca844a..55daa9eb911fb7501369f0e5b66c40cd9c7ca23b 100644 (file)
@@ -726,7 +726,8 @@ DISTRO[unexport] = "1"
 # Used by canadian-cross to handle string conversions on TARGET_ARCH where needed
 TRANSLATED_TARGET_ARCH ??= "${@d.getVar('TARGET_ARCH', True).replace("_", "-")}"
 
-BB_CONSOLELOG = "${TMPDIR}/cooker.log.${DATETIME}"
+# Complete output from bitbake, if you're changing it, make sure to use existing directory
+BB_CONSOLELOG ?= "${TMPDIR}/cooker.log.${DATETIME}"
 
 # Setup our default hash policy
 BB_SIGNATURE_HANDLER ?= "OEBasic"