diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-05-07 09:05:57 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-05-09 14:08:50 +0100 |
commit | 2fcf5a7706de1431bbc1d6ef981360bb4ec0c028 (patch) | |
tree | e83ac4d5b07c586ee1e0a8014bf14f550d63070f /meta | |
parent | 506241c914383c20561144069ba0b0d3850ce8cc (diff) | |
download | poky-2fcf5a7706de1431bbc1d6ef981360bb4ec0c028.tar.gz |
sanity.bbclass: Add cpio to list of required utilities tested for
(From OE-Core rev: 4f4bac0a459fe238e105e96b2b59b6af88e639c4)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/sanity.bbclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index df5a872103..6bcfa96487 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass | |||
@@ -168,7 +168,7 @@ def check_sanity(e): | |||
168 | if not check_app_exists('${BUILD_PREFIX}g++', e.data): | 168 | if not check_app_exists('${BUILD_PREFIX}g++', e.data): |
169 | missing = missing + "C++ Compiler (%sg++)," % data.getVar("BUILD_PREFIX", e.data, True) | 169 | missing = missing + "C++ Compiler (%sg++)," % data.getVar("BUILD_PREFIX", e.data, True) |
170 | 170 | ||
171 | required_utilities = "patch help2man diffstat texi2html makeinfo cvs svn bzip2 tar gzip gawk hg chrpath wget" | 171 | required_utilities = "patch help2man diffstat texi2html makeinfo cvs svn bzip2 tar gzip gawk hg chrpath wget cpio" |
172 | 172 | ||
173 | # qemu-native needs gcc 3.x | 173 | # qemu-native needs gcc 3.x |
174 | if "qemu-native" not in assume_provided and "gcc3-native" in assume_provided: | 174 | if "qemu-native" not in assume_provided and "gcc3-native" in assume_provided: |