diff options
author | Michael Lauer <mickey@vanille-media.de> | 2006-10-13 12:50:40 +0000 |
---|---|---|
committer | Michael Lauer <mickey@vanille-media.de> | 2006-10-13 12:50:40 +0000 |
commit | d631a2f8dbd20100b92a46d8eb03f0d5406c33cd (patch) | |
tree | 1540285cc15302ae027ac17a098e90cfa3827cf7 /classes/sanity.bbclass | |
parent | 3042683d893743732d470888e23c8ec0ad5a64e2 (diff) |
sanity.bbclass: improve error reporting for missing utilities. thanks nicholas
Diffstat (limited to 'classes/sanity.bbclass')
-rw-r--r-- | classes/sanity.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/sanity.bbclass b/classes/sanity.bbclass index d81def55a6..64c1bc0a0c 100644 --- a/classes/sanity.bbclass +++ b/classes/sanity.bbclass @@ -86,7 +86,7 @@ def check_sanity(e): for util in required_utilities.split(): if not check_app_exists( util, e.data ): - raise_sanity_error( "Please install the %s utility." ) + raise_sanity_error( "Please install the %s utility." % util ) oes_bb_conf = data.getVar( 'OES_BITBAKE_CONF', e.data, True ) if not oes_bb_conf: |