summaryrefslogtreecommitdiffstats
path: root/meta/conf
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2017-09-08 18:27:38 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-09-12 23:55:28 +0100
commitc9b5a880b63ba32996fec4a5cb551161e1d6a0da (patch)
tree841ace3439bdc24bdd6250057acb06f5a7101578 /meta/conf
parentc9daf6b38b20a04cea7179ac1eae162fa5f85ace (diff)
downloadpoky-c9b5a880b63ba32996fec4a5cb551161e1d6a0da.tar.gz
bitbake.conf: add bzr to HOSTTOOLS_NONFATAL
* it's used by bzr fetcher: meta/conf/bitbake.conf:FETCHCMD_bzr = "/usr/bin/env bzr" and when it isn't available in PATH do_fetch tasks fail with: /usr/bin/env: ‘bzr’: No such file or directory * it was also added in: https://patchwork.openembedded.org/patch/140107/ but this change wasn't merged (nor rejected AFAIS) (From OE-Core rev: c7ba7e9e7a7ca2caf453106112dc5a3c855b21d3) Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/conf')
-rw-r--r--meta/conf/bitbake.conf3
1 files changed, 3 insertions, 0 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf
index 8ce08340d7..444c53f677 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -483,6 +483,9 @@ HOSTTOOLS_NONFATAL += "aws ccache gcc-ar gpg ld.bfd ld.gold nc sftp socat sudo"
483# Temporary add few more detected in bitbake world 483# Temporary add few more detected in bitbake world
484HOSTTOOLS_NONFATAL += "join nl size yes zcat" 484HOSTTOOLS_NONFATAL += "join nl size yes zcat"
485 485
486# Used by bzr fetcher
487HOSTTOOLS_NONFATAL += "bzr"
488
486CCACHE ??= "" 489CCACHE ??= ""
487# ccache < 3.1.10 will create CCACHE_DIR on startup even if disabled, and 490# ccache < 3.1.10 will create CCACHE_DIR on startup even if disabled, and
488# autogen sets HOME=/dev/null so in certain situations builds can fail. 491# autogen sets HOME=/dev/null so in certain situations builds can fail.