diff options
author | Richard Purdie <richard@openedhand.com> | 2006-12-22 13:51:35 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2006-12-22 13:51:35 +0000 |
commit | ae60cc23f955d0f8feb68a46ef301b4f1e682a08 (patch) | |
tree | de270272641dbc544e024ad89c997e406aa07c4a | |
parent | 8ceaa4e5ff708d083633544346a30ab42a8afedd (diff) | |
download | openembedded-core-ae60cc23f955d0f8feb68a46ef301b4f1e682a08.tar.gz openembedded-core-ae60cc23f955d0f8feb68a46ef301b4f1e682a08.tar.bz2 openembedded-core-ae60cc23f955d0f8feb68a46ef301b4f1e682a08.zip |
README, sanity.bbclass: Add makeinfo (from texinfo) as a dependency. Also check for qemu-arm binary
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@1086 311d38ba-8fff-0310-9ca6-ca027cbcb966
-rw-r--r-- | README | 1 | ||||
-rw-r--r-- | meta/classes/sanity.bbclass | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -14,6 +14,7 @@ extra packages be installed; build-essential diffstat +texinfo texi2html cvs subversion diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index 5281cbc7af..20e4bda7a9 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass @@ -86,7 +86,7 @@ def check_sanity(e): if not check_app_exists('${BUILD_PREFIX}g++', e.data): missing = missing + "C++ Compiler," - required_utilities = "patch diffstat texi2html cvs svn bzip2 tar gzip gawk sdl-config" + required_utilities = "patch diffstat texi2html cvs svn bzip2 tar gzip gawk makeinfo qemu-arm" for util in required_utilities.split(): if not check_app_exists( util, e.data ): |