aboutsummaryrefslogtreecommitdiffstats
path: root/meta/classes
diff options
context:
space:
mode:
authorPhilip Balister <philip@balister.org>2017-02-08 15:27:06 -0500
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-02-15 09:29:43 -0800
commit096c07900250db157bb0c38785b9d8efc6301cab (patch)
tree83284deaa682ca39ec853e6d8b1793dc13a541b1 /meta/classes
parent1e01c2e32c168805a9b71c1dba4b487916955813 (diff)
downloadopenembedded-core-contrib-096c07900250db157bb0c38785b9d8efc6301cab.tar.gz
sanity.bbclass: Add which to SANITY_REQUIRED_UTILITIES.
Using docker with the Fedora 23 container exposed an issue with the rpm-native configure step. If which is not present the configure script fork bombs. After much pain, I tracked this to which not being present in the default container. Add a check for which so others do not have to have this experience. Signed-off-by: Philip Balister <philip@balister.org> Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/classes')
-rw-r--r--meta/classes/sanity.bbclass2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass
index 0f3ede2be4..8935df8bd8 100644
--- a/meta/classes/sanity.bbclass
+++ b/meta/classes/sanity.bbclass
@@ -3,7 +3,7 @@
#
SANITY_REQUIRED_UTILITIES ?= "patch diffstat makeinfo git bzip2 tar \
- gzip gawk chrpath wget cpio perl file"
+ gzip gawk chrpath wget cpio perl file which"
def bblayers_conf_file(d):
return os.path.join(d.getVar('TOPDIR'), 'conf/bblayers.conf')