From: Holger Freyther Date: Sun, 3 Sep 2006 21:51:36 +0000 (+0000) Subject: classes/sanity.bbclass: Check for bzip2 in the path as well X-Git-Tag: Release-2010-05/1~9453^2~875^2~66^2~9 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dc05d36fb3e799566cb1325f4d1f0ca018207f57;p=openembedded.git classes/sanity.bbclass: Check for bzip2 in the path as well --- diff --git a/classes/sanity.bbclass b/classes/sanity.bbclass index 91ca9865fd..23a8f656b2 100644 --- a/classes/sanity.bbclass +++ b/classes/sanity.bbclass @@ -97,6 +97,9 @@ def check_sanity(e): if not check_app_exists('svn', e.data): raise_sanity_error('Please install the svn utility') + if not check_app_exists('bzip2', e.data): + raise_sanity_error('Please install the bzip2 utility') + oes_bb_conf = data.getVar( 'OES_BITBAKE_CONF', e.data, True ) if not oes_bb_conf: raise_sanity_error('You do not include OpenEmbeddeds version of conf/bitbake.conf')