summaryrefslogtreecommitdiffstats
path: root/meta/conf
diff options
context:
space:
mode:
authorMartin Jansa <martin.jansa@gmail.com>2017-09-13 17:49:11 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-09-13 22:13:00 +0100
commit072430b9b3a78b318b66371c36e2986d2ed5cba4 (patch)
treee3abfce76f5715791d9cd8d857ffe71599e77eaa /meta/conf
parent5228b68cfe2d7ad183baa4fbb9cecd4eaf976c62 (diff)
downloadpoky-072430b9b3a78b318b66371c36e2986d2ed5cba4.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) * cherry-picked from master c7ba7e9e7a7ca2caf453106112dc5a3c855b21d3 (From OE-Core rev: 92f73702d95e9c6ae72de667f225c9d24afe5c0a) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> 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 8e4f4bbb56..2dac3a1481 100644
--- a/meta/conf/bitbake.conf
+++ b/meta/conf/bitbake.conf
@@ -477,6 +477,9 @@ HOSTTOOLS_NONFATAL += "aws ccache gcc-ar gpg ld.bfd ld.gold nc sftp socat sudo"
477# Temporary add few more detected in bitbake world 477# Temporary add few more detected in bitbake world
478HOSTTOOLS_NONFATAL += "join nl size yes zcat" 478HOSTTOOLS_NONFATAL += "join nl size yes zcat"
479 479
480# Used by bzr fetcher
481HOSTTOOLS_NONFATAL += "bzr"
482
480CCACHE ??= "" 483CCACHE ??= ""
481# Disable ccache explicitly if CCACHE is null since gcc may be a symlink 484# Disable ccache explicitly if CCACHE is null since gcc may be a symlink
482# of ccache some distributions (e.g., Fedora 17). 485# of ccache some distributions (e.g., Fedora 17).