diff options
author | Mikko Ylinen <mikko.ylinen@linux.intel.com> | 2017-03-14 20:56:35 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2017-03-16 17:35:01 +0000 |
commit | 97f979ee61a06349139ccc47feaf051bdbcf0e16 (patch) | |
tree | 286e4b343c1bc38393949905726d6ae852108abf /meta | |
parent | 477805b913a6c4b4b630e42f08cd9e59f1e4e254 (diff) | |
download | openembedded-core-97f979ee61a06349139ccc47feaf051bdbcf0e16.tar.gz openembedded-core-97f979ee61a06349139ccc47feaf051bdbcf0e16.tar.bz2 openembedded-core-97f979ee61a06349139ccc47feaf051bdbcf0e16.zip |
bitbake.conf: whitelist socat as non-fatal host tool
oe-git-proxy depends on socat host tool but it's not
whitelisted and triggers a 'binary not in PATH' error.
Whitelist socat but make it a HOSTTOOLS_NONFATAL since
it's not a hard dependency.
Signed-off-by: Mikko Ylinen <mikko.ylinen@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/conf/bitbake.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 0de8a74c43..d92c5cd0ca 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf @@ -469,7 +469,7 @@ HOSTTOOLS += " \ HOSTTOOLS += "ps stty ip ssh scp ping vi" # Link to these if present -HOSTTOOLS_NONFATAL += "ccache pip3 ld.bfd ld.gold gcc-ar gpg sftp nc" +HOSTTOOLS_NONFATAL += "ccache pip3 ld.bfd ld.gold gcc-ar gpg sftp nc socat" CCACHE ??= "" # Disable ccache explicitly if CCACHE is null since gcc may be a symlink |